1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-09 08:18:43 +01:00
antares/.github/workflows/create-artifact-linux.yml

27 lines
526 B
YAML

name: Create artifact [LINUX]
on:
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: npm install & build
run: |
npm install
npm run build:local
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: linux-build
retention-days: 3
path: |
build
!build/*-unpacked
!build/.icon-ico