Skip to content

Commit

Permalink
bump download-artifact to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
felipebueno committed Sep 20, 2024
1 parent 658680a commit 5887f78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Download build artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: android-release
- name: Release
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/google-play-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Create version.txt with nuGetVersion
run: echo ${{ steps.gitversion.outputs.nuGetVersion }} > version.txt
- name: Upload version.txt
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: gitversion
path: version.txt
Expand All @@ -38,7 +38,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Get version.txt
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: gitversion
- name: Create new file without newline char from version.txt
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
run: flutter build appbundle --flavor prod

- name: Upload Android Release
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: android-release
path: build/app/outputs/bundle/prodRelease/app-prod-release.aab
Expand All @@ -92,7 +92,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Get Android Build from artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
with:
name: android-release
- name: Release Build to production track
Expand Down

0 comments on commit 5887f78

Please sign in to comment.