fix(ci): force bash shell on Windows for gh release step

This commit is contained in:
Psychotoxical
2026-04-06 13:00:43 +02:00
parent 7ac417fbfc
commit 9cc8cfe087
+3 -4
View File
@@ -132,12 +132,11 @@ jobs:
# as the signature value (wrong). Delete it so only our generate-update-manifest.js # as the signature value (wrong). Delete it so only our generate-update-manifest.js
# output is ever used as the canonical update manifest. # output is ever used as the canonical update manifest.
- name: remove tauri-action generated update manifest - name: remove tauri-action generated update manifest
shell: bash
run: |
gh release delete-asset ${{ github.ref_name }} latest.json --yes || true
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 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 - name: sign and upload Windows NSIS updater bundle
if: matrix.settings.platform == 'windows-latest' if: matrix.settings.platform == 'windows-latest'