Update release.yml

This commit is contained in:
gardenGnostic 2026-03-12 22:44:58 +01:00 committed by GitHub
parent 3a104398f4
commit 4c42fd0e55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -33,7 +33,6 @@ jobs:
name: linux-dist name: linux-dist
path: dist/*.AppImage path: dist/*.AppImage
if-no-files-found: error if-no-files-found: error
build-windows: build-windows:
name: Build Windows Installer name: Build Windows Installer
runs-on: windows-latest runs-on: windows-latest
@ -59,7 +58,6 @@ jobs:
dist/*.exe dist/*.exe
dist/*.msi dist/*.msi
if-no-files-found: error if-no-files-found: error
build-mac: build-mac:
name: Build macOS DMG (Apple Silicon) name: Build macOS DMG (Apple Silicon)
runs-on: macos-latest runs-on: macos-latest
@ -83,10 +81,9 @@ jobs:
name: mac-dist name: mac-dist
path: dist/*.dmg path: dist/*.dmg
if-no-files-found: error if-no-files-found: error
build-mac-intel: build-mac-intel:
name: Build macOS DMG (Intel) name: Build macOS DMG (Intel)
runs-on: macos-13 runs-on: macos-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -98,7 +95,7 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
- name: Build macOS DMG (Intel) - name: Build macOS DMG (Intel)
run: npm run dist:mac run: npm run dist:mac -- --x64
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload macOS Intel artifact - name: Upload macOS Intel artifact
@ -107,7 +104,6 @@ jobs:
name: mac-intel-dist name: mac-intel-dist
path: dist/*.dmg path: dist/*.dmg
if-no-files-found: error if-no-files-found: error
release: release:
name: Create GitHub Release name: Create GitHub Release
needs: [build-linux, build-windows, build-mac, build-mac-intel] needs: [build-linux, build-windows, build-mac, build-mac-intel]