Skip to content

Commit fa3373c

Browse files
committed
update workflow
1 parent f8ad683 commit fa3373c

File tree

3 files changed

+7848
-3457
lines changed

3 files changed

+7848
-3457
lines changed

.github/workflows/webpack.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
node-version: [14.x, 16.x, 18.x]
13+
node-version: [16.x]
1414

1515
steps:
1616
- uses: actions/checkout@v3
@@ -33,3 +33,13 @@ jobs:
3333

3434
- name: Build
3535
run: npm run build
36+
37+
- name: Zip
38+
run: zip -r "${GITHUB_WORKSPACE}/${GITHUB_REPOSITORY#*/}.zip" .
39+
shell: bash
40+
41+
- name: Upload zip
42+
uses: actions/upload-artifact@v4
43+
with:
44+
name: ${{ github.event.repository.name }}
45+
path: "${GITHUB_WORKSPACE}/${GITHUB_REPOSITORY#*/}.zip"

0 commit comments

Comments
 (0)