ci: disable Windows release artifact
Skips Windows desktop build in release workflow Removes Windows manifest from release finalization
This commit is contained in:
@@ -276,6 +276,7 @@ jobs:
|
||||
retention-days: 1
|
||||
|
||||
build-desktop-electron-windows:
|
||||
if: ${{ false }} # Windows artifact is disabled until the build is release-ready.
|
||||
needs: create-release
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
@@ -511,7 +512,7 @@ jobs:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
combine-electron-manifests:
|
||||
needs: [create-release, build-desktop-electron-macos, build-desktop-electron-windows]
|
||||
needs: [create-release, build-desktop-electron-macos]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
@@ -527,12 +528,6 @@ jobs:
|
||||
pattern: latest-yml-*-apple-darwin
|
||||
path: artifacts
|
||||
|
||||
- name: Download Windows latest.yml
|
||||
uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: latest-yml-*-pc-windows-*
|
||||
path: artifacts
|
||||
|
||||
- name: Finalize combined latest-mac.yml
|
||||
env:
|
||||
LATEST_YML_DIR: ${{ github.workspace }}/artifacts
|
||||
@@ -546,12 +541,11 @@ jobs:
|
||||
tag_name: v${{ needs.create-release.outputs.version }}
|
||||
files: |
|
||||
${{ runner.temp }}/latest-mac.yml
|
||||
${{ runner.temp }}/latest.yml
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
finalize-release:
|
||||
needs: [create-release, build-desktop-electron-macos, build-desktop-electron-windows, repackage-electron-as-tauri-update, publish-npm, combine-manifests, combine-electron-manifests]
|
||||
needs: [create-release, build-desktop-electron-macos, repackage-electron-as-tauri-update, publish-npm, combine-manifests, combine-electron-manifests]
|
||||
runs-on: ubuntu-latest
|
||||
env:
|
||||
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||||
|
||||
Reference in New Issue
Block a user