From 86d95c28bc16de4adf4f149d406a4747a7ff5960 Mon Sep 17 00:00:00 2001 From: WardPearce Date: Mon, 6 May 2024 16:50:33 +1200 Subject: [PATCH] Fix release tag --- .github/workflows/prod-android.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prod-android.yml b/.github/workflows/prod-android.yml index 542103d6..3d0f6980 100644 --- a/.github/workflows/prod-android.yml +++ b/.github/workflows/prod-android.yml @@ -65,10 +65,11 @@ jobs: - name: Create Release id: create_release - uses: ncipollo/release-action@v1.13.0 + uses: ncipollo/release-action@v1 with: artifacts: "./materialious/android/app/build/outputs/app-release-signed.aab, ./materialious/android/app/build/outputs/app-release-signed.apk" body: ${{ steps.changelog.outputs.changelog }} name: Release ${{ github.event.head_commit.message }} + tag: ${{ github.ref }} allowUpdates: true token: ${{ secrets.GITHUB_TOKEN }}