-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Edited version number for upload-artifact
- Loading branch information
1 parent
366f2a4
commit 9c7962d
Showing
1 changed file
with
5 additions
and
3 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 |
---|---|---|
|
@@ -19,14 +19,16 @@ jobs: | |
- uses: actions/[email protected] | ||
- uses: actions/[email protected] | ||
with: | ||
distribution: 'temurin' # See 'Supported distributions' for available options | ||
java-version: '17' | ||
distribution: 'zulu' # See 'Supported distributions' for available options | ||
java-version: '12.x' | ||
cache: 'gradle' | ||
|
||
# Setup the flutter environment. | ||
- uses: subosito/[email protected] | ||
with: | ||
channel: 'stable' # 'dev', 'alpha', default to: 'stable' | ||
# flutter-version: '1.12.x' # you can also specify exact version of flutter | ||
cache: true | ||
|
||
# Get flutter dependencies. | ||
- run: flutter pub get | ||
|
@@ -44,7 +46,7 @@ jobs: | |
- run: flutter build apk | ||
|
||
# Upload generated apk to the artifacts. | ||
- uses: actions/upload-artifact@v1 | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: release-apk | ||
path: build/app/outputs/apk/release/app-release.apk |