-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The build step now use ´--build-name´ param to dynamically set the app version without editing the pubspec.yaml file
- Loading branch information
1 parent
048ba18
commit b83e3d6
Showing
2 changed files
with
16 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ on: | |
|
||
|
||
jobs: | ||
build_android: | ||
Android: | ||
name: 'Android (${{ inputs.android_output }})' | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
@@ -41,28 +41,32 @@ jobs: | |
uses: subosito/[email protected] | ||
with: | ||
flutter-version: ${{ inputs.flutter_version }} | ||
- name: 'Generate build number' | ||
run: | | ||
BUILD_NUMBER=$(git rev-list --all --count) | ||
echo "BUILD_NUMBER=$BUILD_NUMBER" >> $GITHUB_ENV | ||
echo "This build is tagged as $BUILD_NAME+$BUILD_NUMBER on $GITHUB_REF" | ||
env: | ||
BUILD_NAME: ${{ github.ref_name }} | ||
- name: 'Build Android APK' | ||
if: ${{ inputs.android_output == 'apk' }} | ||
# Build APK version of the app | ||
run: flutter build apk --split-per-abi | ||
run: flutter build apk --build-name="$BUILD_NAME" --build-number="$BUILD_NUMBER" --split-per-abi | ||
env: | ||
BUILD_NUMBER: ${{ env.BUILD_NUMBER }} | ||
BUILD_NAME: ${{ github.ref_name }} | ||
ENV: ${{ inputs.env }} | ||
- name: 'Save APK' | ||
if: ${{ inputs.android_output == 'apk' }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'apk-build' | ||
path: build/app/outputs/apk/release/app-arm64-v8a-release.apk | ||
- name: 'Generate build number' | ||
if: ${{ inputs.android_output == 'aab' }} | ||
# Build App Bundle version of the app | ||
run: | | ||
BUILD_NUMBER=$(git rev-list --all --count) | ||
echo "BUILD_NUMBER=$BUILD_NUMBER" >> $GITHUB_ENV | ||
echo "This build is tagged as $BUILD_NUMBER on $GITHUB_REF" | ||
- name: 'Build Android App Bundle' | ||
if: ${{ inputs.android_output == 'aab' }} | ||
run: flutter build appbundle --build-number="$BUILD_NUMBER" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=ENV="$ENV" | ||
run: flutter build appbundle --build-name="$BUILD_NAME" --build-number="$BUILD_NUMBER" --dart-define=SENTRY_DSN="$SENTRY_DSN" --dart-define=ENV="$ENV" | ||
env: | ||
BUILD_NUMBER: ${{ env.BUILD_NUMBER }} | ||
BUILD_NAME: ${{ github.ref_name }} | ||
SENTRY_DSN: ${{ secrets.SENTRY_DSN }} | ||
ENV: ${{ inputs.env }} | ||
- name: 'Save AAB' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters