Skip to content

Commit

Permalink
Merge pull request #3 from gokadzev/master
Browse files Browse the repository at this point in the history
updated workflow
  • Loading branch information
gokadzev committed Apr 21, 2022
2 parents 04d4a21 + 2c8be78 commit ee319f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

# Setup Java environment in order to build the Android app.
- uses: actions/setup-java@v1
Expand All @@ -15,7 +15,7 @@ jobs:


# Gradle cache for faster builds
- uses: actions/cache@v2
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand All @@ -24,7 +24,7 @@ jobs:
restore-keys: |
${{ runner.os }}-gradle-
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
- uses: subosito/flutter-action@v2
with:
channel: "stable"
# Get flutter dependencies.
Expand All @@ -36,7 +36,7 @@ jobs:
# Build apk.
- run: flutter build apk --release
# Upload generated apk to the artifacts.
- uses: actions/upload-artifact@v1
- uses: actions/upload-artifact@v3
with:
name: app-release.apk
path: build/app/outputs/apk/release/app-release.apk
name: Musify.apk
path: build/app/outputs/apk/release/app-release.apk

0 comments on commit ee319f5

Please sign in to comment.