Added onboarding and exe output.

This commit is contained in:
2026-07-17 09:57:49 +01:00
parent 12edaa054d
commit a598abe1e6
9 changed files with 2193 additions and 47 deletions
+33
View File
@@ -0,0 +1,33 @@
name: build-windows-exe
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
env:
BUILD_VERSION: ${{ github.ref_name }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '24'
cache: npm
- name: Install dependencies
run: npm ci
- name: Build Windows executable
run: npm run build:win
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: gSheets-Rate-Assistant-${{ github.ref_name }}
path: dist/gSheets-Rate-Assistant-${{ github.ref_name }}.exe