Skip to content

Commit

Permalink
Update to actions/upload-artifact v4
Browse files Browse the repository at this point in the history
  • Loading branch information
DennisBauer committed Sep 27, 2024
1 parent 4525c94 commit 59fabdb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: Verify Signature
run: $ANDROID_SDK_ROOT/build-tools/34.0.0/apksigner verify --print-certs app/build/outputs/apk/release/RecurringExpenseTracker_${{ steps.get_version.outputs.version-without-v }}.apk
- name: Upload APK
uses: actions/upload-artifact@v3.2.1
uses: actions/upload-artifact@v4
with:
name: apk
path: app/build/outputs/apk/release/RecurringExpenseTracker_${{ steps.get_version.outputs.version-without-v }}.apk
Expand Down Expand Up @@ -66,15 +66,15 @@ jobs:
SIGNING_KEY_PASSWORD: ${{ secrets.SIGNING_KEY_PLAY_STORE_PASSWORD }}
SIGNING_STORE_PASSWORD: ${{ secrets.SIGNING_STORE_PLAY_STORE_PASSWORD }}
- name: Upload AppBundle
uses: actions/upload-artifact@v3.2.1
uses: actions/upload-artifact@v4
with:
name: appbundle
path: app/build/outputs/bundle/release/app-release.aab
- name: Create whatsnew
id: createWhatsNew
run: mkdir -p whatsnew && ls -v fastlane/metadata/android/en-US/changelogs/*.txt | tail -n 1 | xargs cat > whatsnew/whatsnew-en-US
- name: Upload whatsnew
uses: actions/upload-artifact@v3.2.1
uses: actions/upload-artifact@v4
with:
name: whatsnew
path: whatsnew/whatsnew-en-US
Expand Down

0 comments on commit 59fabdb

Please sign in to comment.