Skip to content

Commit

Permalink
Merge pull request #1074 from shankari/setup_better_testing
Browse files Browse the repository at this point in the history
Improve testing so we also run tests on feature branches
  • Loading branch information
shankari authored Oct 21, 2023
2 parents 26f30d7 + 07b7d20 commit d28d193
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/serve-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,13 @@ on:
branches:
- master
- maint_upgrade_**
- ui_feature_**
pull_request:
branches:
- master
- maint_upgrade_**
- ui_feature_**
- service_rewrite_2023
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '5 4 * * 0'
Expand Down
4 changes: 2 additions & 2 deletions bin/sign_and_align_keys.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ PROJECT=$1
VERSION=$2

if [[ $# -eq 0 ]]; then
echo "No arguments supplied"
echo "sign_and_align_keys <PROJECT> <VERSION>"
exit 1
fi

# Sign and release the L+ version
# Make sure the highest supported version has the biggest version code
npm run build-prod-android
npm run build-prod-android-release
# cp platforms/android/app/build/outputs/apk/release/app-release-unsigned.aab platforms/android/app/build/outputs/apk/app-release-signed-unaligned.apk
jarsigner -verbose -sigalg SHA256withRSA -digestalg SHA-256 -keystore ../config_files/production.keystore ./platforms/android/app/build/outputs/bundle/release/app-release.aab androidproductionkey
cp platforms/android/app/build/outputs/bundle/release/app-release.aab $1-build-$2.aab
Expand Down

0 comments on commit d28d193

Please sign in to comment.