From 3c1b914f5285d734711b8b683ed2d5cbf8a55bbe Mon Sep 17 00:00:00 2001 From: WardPearce Date: Mon, 6 May 2024 16:57:17 +1200 Subject: [PATCH] Moved to svenstaro release action --- .github/workflows/prod-android.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/prod-android.yml b/.github/workflows/prod-android.yml index 3d0f6980..a9e96a7d 100644 --- a/.github/workflows/prod-android.yml +++ b/.github/workflows/prod-android.yml @@ -63,13 +63,12 @@ jobs: include-compare: false semver: false - - name: Create Release - id: create_release - uses: ncipollo/release-action@v1 + - name: Upload APKs to release + uses: svenstaro/upload-release-action@v2 with: - artifacts: "./materialious/android/app/build/outputs/app-release-signed.aab, ./materialious/android/app/build/outputs/app-release-signed.apk" + repo_token: ${{ secrets.GITHUB_TOKEN }} body: ${{ steps.changelog.outputs.changelog }} - name: Release ${{ github.event.head_commit.message }} + file: ./materialious/android/app/build/outputs/* tag: ${{ github.ref }} - allowUpdates: true - token: ${{ secrets.GITHUB_TOKEN }} + overwrite: true + file_glob: true