1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-03-23 14:50:20 +01:00

ci: add GitHub Actions workflow for creating Windows APPX artifacts

This commit is contained in:
fabio286 2025-01-31 13:32:44 +01:00
parent 27387f18a1
commit f3c3284fd1

View File

@ -0,0 +1,32 @@
name: Create artifact [WINDOWS APPX]
on:
workflow_dispatch: {}
jobs:
build:
runs-on: windows-2022
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm i
- name: "Build"
run: npm run build:appx
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: windows-build
retention-days: 3
path: |
build
!build/*-unpacked
!build/.icon-ico