Skip to content

Desktop Release

Desktop Release #3

name: Desktop Release
on:
workflow_dispatch:
push:
tags:
- "v*"
permissions:
contents: read
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
windows-portable:
name: Windows portable build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run checks
run: npm run check
- name: Build Windows portable app
run: npm run dist:win
- name: Upload Windows artifact
uses: actions/upload-artifact@v4
with:
name: GalAid-windows-portable
path: dist/desktop/*.exe
if-no-files-found: error