Skip to content

Commit

Permalink
update entrypoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Vacxe committed Apr 8, 2024
1 parent b30fd28 commit 8a1da9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions github-action/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,23 @@ case $ACTION in
checkParameter "Version code" "$VERSION_CODE"
checkParameter "Path to apk" "$PATH_TO_APK"

.templates/apk-upload.sh "$SERVICE_ACCOUNT_JSON" "$PACKAGE_NAME" "$PATH_TO_APK" "$VERSION_CODE" "$TRACK" "$FLAG_CHANGES_NOT_SENT_FOR_REVIEW"
sh templates/apk-upload.sh "$SERVICE_ACCOUNT_JSON" "$PACKAGE_NAME" "$PATH_TO_APK" "$VERSION_CODE" "$TRACK" "$FLAG_CHANGES_NOT_SENT_FOR_REVIEW"
;;

"bundles-upload")
checkParameter "Package name" "$PACKAGE_NAME"
checkParameter "Version code" "$VERSION_CODE"
checkParameter "Path to bundle" "$PATH_TO_BUNDLE"

.templates/bundles-upload.sh "$SERVICE_ACCOUNT_JSON" "$PACKAGE_NAME" "$PATH_TO_BUNDLE" "$VERSION_CODE" "$TRACK" "$FLAG_CHANGES_NOT_SENT_FOR_REVIEW"
sh templates/bundles-upload.sh "$SERVICE_ACCOUNT_JSON" "$PACKAGE_NAME" "$PATH_TO_BUNDLE" "$VERSION_CODE" "$TRACK" "$FLAG_CHANGES_NOT_SENT_FOR_REVIEW"
;;

"deobfuscation-files-upload")
checkParameter "Package name" "$PACKAGE_NAME"
checkParameter "Version code" "$VERSION_CODE"
checkParameter "Path to mapping" "$PATH_TO_MAPPING"

.templates/deobfuscation-files-upload.sh "$SERVICE_ACCOUNT_JSON" "$PACKAGE_NAME" "$PATH_TO_MAPPING" "$VERSION_CODE" "$FLAG_CHANGES_NOT_SENT_FOR_REVIEW"
sh templates/deobfuscation-files-upload.sh "$SERVICE_ACCOUNT_JSON" "$PACKAGE_NAME" "$PATH_TO_MAPPING" "$VERSION_CODE" "$FLAG_CHANGES_NOT_SENT_FOR_REVIEW"
;;

*)
Expand Down

0 comments on commit 8a1da9d

Please sign in to comment.