-
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.
chore(ci): rework the CI integration
- no more dev branch - new pre-release stage added - `beta` versions now clearly visible
- Loading branch information
1 parent
ace6cd6
commit 7c1793e
Showing
6 changed files
with
34 additions
and
18 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
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ on: | |
push: | ||
branches-ignore: | ||
- main | ||
- dev | ||
|
||
concurrency: | ||
group: ci-${{ github.ref }} | ||
|
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
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
23 changes: 11 additions & 12 deletions
23
.github/workflows/push.dev.yaml → .github/workflows/push.tag-prod.yaml
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 |
---|---|---|
@@ -1,33 +1,32 @@ | ||
name: Dev workflow | ||
name: Main workflow | ||
|
||
on: | ||
push: | ||
branches: | ||
- dev | ||
|
||
concurrency: | ||
group: ci-${{ github.ref }} | ||
cancel-in-progress: true | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+$' | ||
|
||
jobs: | ||
flutter-test-analyze: | ||
uses: ./.github/workflows/action.flutter.analyze-test.yaml | ||
with: | ||
flutter_version: '3.19.3' | ||
secrets: inherit | ||
page: | ||
uses: ./.github/workflows/action.pages.deploy.yaml | ||
flutter-build: | ||
needs: [ flutter-test-analyze ] | ||
uses: ./.github/workflows/action.flutter.build.yaml | ||
with: | ||
flutter_version: '3.19.3' | ||
android_output: 'aab' | ||
env: 'dev' | ||
env: 'prd' | ||
secrets: inherit | ||
fastlane-dry-run: | ||
release: | ||
needs: [ flutter-build ] | ||
uses: ./.github/workflows/action.release.yaml | ||
with: | ||
is_a_prerelease: false | ||
fastlane: | ||
needs: [ flutter-build ] | ||
uses: ./.github/workflows/action.fastlane.yaml | ||
with: | ||
lane: 'dry_run' | ||
lane: 'prd' | ||
secrets: inherit |
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