Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jebarpg authored Aug 4, 2024
1 parent 453b1ad commit 0f63cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if [ -f "${APK_FILES[0]}" ]; then
for f in "${CHANGED_APK_FILES[@]}"; do
rename 's/-/_/' "$f"
done
hub release edit -a ./${APP_FOLDER}/build/outputs/apk/release/*.apk -m "" v${VERSION_NUMBER}
hub release edit -a ./${APP_FOLDER}/build/outputs/apk/release/**.apk -m "" v${VERSION_NUMBER}
fi

AAB_FILES=(./${APP_FOLDER}/build/outputs/bundle/release/**.aab)
Expand All @@ -31,5 +31,5 @@ if [ -f "${AAB_FILES[0]}" ]; then
for f in "${CHANGED_AAB_FILES[@]}"; do
rename 's/-/_/' "$f"
done
hub release edit -a ./${APP_FOLDER}/build/outputs/bundle/release/*.aab -m "" v${VERSION_NUMBER}
hub release edit -a ./${APP_FOLDER}/build/outputs/bundle/release/**.aab -m "" v${VERSION_NUMBER}
fi

0 comments on commit 0f63cc2

Please sign in to comment.