From b2fdb64a908c0b6b7dc115e26a1c6a237f19be4a Mon Sep 17 00:00:00 2001 From: "guillem.cordoba" Date: Sun, 29 Sep 2024 18:40:04 +0200 Subject: [PATCH] Fixed release --- .github/workflows/release-tauri-app.yaml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release-tauri-app.yaml b/.github/workflows/release-tauri-app.yaml index e870bf90..7ba67da7 100644 --- a/.github/workflows/release-tauri-app.yaml +++ b/.github/workflows/release-tauri-app.yaml @@ -182,7 +182,11 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - releaseId: ${{ needs.publish-happ.outputs.releaseId }} + tagName: Relay-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. + releaseName: 'Relay v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false release-tauri-app-windows: permissions: write-all @@ -230,7 +234,11 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - releaseId: ${{ needs.publish-happ.outputs.releaseId }} + tagName: Relay-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. + releaseName: 'Relay v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false release-tauri-app-macos: permissions: write-all @@ -289,4 +297,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - releaseId: ${{ needs.publish-happ.outputs.releaseId }} + tagName: Relay-v__VERSION__ # the action automatically replaces \_\_VERSION\_\_ with the app version. + releaseName: 'Relay v__VERSION__' + releaseBody: 'See the assets to download this version and install.' + releaseDraft: true + prerelease: false