mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-06 03:34:40 +00:00
feat: make github workflow upload build artifact
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
name: NodeJS Testing
|
name: NodeJS Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -26,3 +26,13 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
npm run build
|
npm run build
|
||||||
|
|
||||||
|
- name: Zip dist folder
|
||||||
|
run: |
|
||||||
|
zip -r dist.zip dist
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: dist-zip
|
||||||
|
path: dist.zip
|
||||||
Reference in New Issue
Block a user