From 9cc8cfe087879623aa55ef22565a8e1b6aa7b6b0 Mon Sep 17 00:00:00 2001 From: Psychotoxical Date: Mon, 6 Apr 2026 13:00:43 +0200 Subject: [PATCH] fix(ci): force bash shell on Windows for gh release step --- .github/workflows/release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9142ba32..4df69508 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -132,12 +132,11 @@ jobs: # as the signature value (wrong). Delete it so only our generate-update-manifest.js # output is ever used as the canonical update manifest. - name: remove tauri-action generated update manifest + shell: bash + run: | + gh release delete-asset ${{ github.ref_name }} latest.json --yes || true env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - gh release delete-asset \ - "app-v${{ needs.create-release.outputs.package_version }}" \ - latest.json --yes 2>/dev/null || true - name: sign and upload Windows NSIS updater bundle if: matrix.settings.platform == 'windows-latest'