2022-06-12 19:58:22 +02:00
|
|
|
name: Create artifact [LINUX]
|
2022-06-12 18:30:44 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch: {}
|
|
|
|
|
|
|
|
jobs:
|
2022-06-12 19:58:22 +02:00
|
|
|
build:
|
2023-11-16 18:01:40 +01:00
|
|
|
runs-on: ubuntu-latest
|
2022-06-12 18:30:44 +02:00
|
|
|
steps:
|
|
|
|
- name: Check out Git repository
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2022-08-01 18:06:57 +02:00
|
|
|
- name: Install Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-11-16 18:01:40 +01:00
|
|
|
node-version: 20
|
2023-03-02 09:49:59 +01:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm i
|
|
|
|
|
|
|
|
- name: "Build"
|
|
|
|
run: npm run build
|
2022-06-12 18:30:44 +02:00
|
|
|
|
|
|
|
- name: Upload Artifact
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: linux-build
|
|
|
|
retention-days: 3
|
|
|
|
path: |
|
|
|
|
build
|
2022-06-12 19:58:22 +02:00
|
|
|
!build/*-unpacked
|
2022-06-12 18:30:44 +02:00
|
|
|
!build/.icon-ico
|