From db2d23b59e1416bc91b6c764e2abacdfdaefcb65 Mon Sep 17 00:00:00 2001 From: ThatXliner Date: Wed, 3 Apr 2024 17:20:15 -0700 Subject: [PATCH] Why is the tag parameter needed though? --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f24a7ab..a7b33c4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,6 +64,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: file_glob: true + tag: ${{ github.ref }} file: src-tauri/target/release/bundle/*/*.dmg - name: (.msi) Upload files to a GitHub release uses: svenstaro/upload-release-action@2.9.0 @@ -72,6 +73,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: file_glob: true + tag: ${{ github.ref }} file: src-tauri/target/release/bundle/*/*.msi - name: (.deb) Upload files to a GitHub release uses: svenstaro/upload-release-action@2.9.0 @@ -80,6 +82,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: file_glob: true + tag: ${{ github.ref }} file: src-tauri/target/release/bundle/*/*.deb - name: (.AppImage) Upload files to a GitHub release uses: svenstaro/upload-release-action@2.9.0 @@ -88,6 +91,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: file_glob: true + tag: ${{ github.ref }} file: src-tauri/target/release/bundle/*/*.AppImage - name: (.app) Upload files to a GitHub release uses: svenstaro/upload-release-action@2.9.0 @@ -96,4 +100,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: file_glob: true + tag: ${{ github.ref }} file: src-tauri/target/release/bundle/*/*.app