ci: github action for macos artifacts

This commit is contained in:
Fabio Di Stasio 2022-08-27 09:02:09 +02:00
parent 05c2f9836c
commit 89da957a49
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
name: Create artifact [MACOS]
on:
workflow_dispatch: {}
jobs:
build:
runs-on: macos-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: npm install & build
run: |
npm install
npm run build
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: linux-build
retention-days: 3
path: |
build
!build/*-unpacked
!build/.icon-ico