Skip to content

Commit

Permalink
fix-action
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Apr 15, 2024
1 parent 6f50daf commit eec576f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 19 deletions.
4 changes: 0 additions & 4 deletions github-action/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,11 @@ fi
}

SERVICE_ACCOUNT_JSON=${1}

TEMPLATE=${2}

CUSTOM_SCRIPT=${3}

PACKAGE_NAME=${4}
VERSION_CODE=${5}
TRACK=${6}

PATH_TO_APK=${7}
PATH_TO_BUNDLE=${8}
PATH_TO_MAPPING=${9}
Expand Down
12 changes: 6 additions & 6 deletions github-action/templates/apk-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

set -e

PATH_TO_APK=$3
VERSION_CODE=$4
TRACK=$5
FLAG_CHANGES_NOT_SENT_FOR_REVIEW=$6
STATUS="${7}"
USER_FRACTION=${8}
PATH_TO_APK=$1
VERSION_CODE=$2
TRACK=$3
FLAG_CHANGES_NOT_SENT_FOR_REVIEW=$4
STATUS="${5}"
USER_FRACTION=${6}

echo "---"
echo "Path to apk: $PATH_TO_APK"
Expand Down
12 changes: 6 additions & 6 deletions github-action/templates/bundles-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

set -e

PATH_TO_BUNDLE="${3}"
VERSION_CODE="${4}"
TRACK="${5}"
FLAG_CHANGES_NOT_SENT_FOR_REVIEW="${6}"
STATUS="${7}"
USER_FRACTION=${8}
PATH_TO_BUNDLE="${1}"
VERSION_CODE="${2}"
TRACK="${3}"
FLAG_CHANGES_NOT_SENT_FOR_REVIEW="${4}"
STATUS="${5}"
USER_FRACTION=${6}

echo "---"
echo "Path to bundle: $PATH_TO_BUNDLE"
Expand Down
6 changes: 3 additions & 3 deletions github-action/templates/deobfuscation-files-upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

set -e

PATH_TO_MAPPING="${3}"
VERSION_CODE="${4}"
FLAG_CHANGES_NOT_SENT_FOR_REVIEW="${5}"
PATH_TO_MAPPING="${1}"
VERSION_CODE="${2}"
FLAG_CHANGES_NOT_SENT_FOR_REVIEW="${3}"

echo "---"
echo "Path to mapping: $PATH_TO_MAPPING"
Expand Down

0 comments on commit eec576f

Please sign in to comment.