Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve testing so we also run tests on feature branches #1074

Merged
merged 5 commits into from
Oct 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading