mizar/.github/workflows/create-artifact-win.yml

33 lines
652 B
YAML
Raw Normal View History

2023-04-16 12:48:11 +02:00
name: Create artifact [WINDOWS]
2023-04-16 12:47:26 +02:00
on:
workflow_dispatch: {}
jobs:
build:
2023-04-16 22:06:46 +02:00
runs-on: windows-latest
2023-04-16 12:47:26 +02:00
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm i
- name: "Build"
run: npm run build
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
2023-04-16 12:48:11 +02:00
name: win-build
2023-04-16 12:47:26 +02:00
retention-days: 3
path: |
build
!build/*-unpacked
!build/.icon-ico