chore(ci): add `.zip` file to GitHub Release and upload artifact

This commit is contained in:
郭桓桓 2023-03-02 22:52:00 +08:00
parent cd9ecdfed3
commit 2da4f4deb2
Signed by: kuohuanhuan
GPG Key ID: FD846A0A797B0D75
2 changed files with 21 additions and 3 deletions

View File

@ -54,3 +54,12 @@ jobs:
# Step IV
- name: Test Build
run: npm run build
# Step V
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: built-on__os_${{ matrix.os }}__nodejs_${{ matrix.node-version }}
path: dist/
retention-days: 3
# Authored by KuoHuanHuan.

View File

@ -29,17 +29,26 @@ jobs:
- name: Build Project
run: npm run build
# Step V
- uses: vimtor/action-zip@v1
with:
files: dist/
dest: build.zip
# Step VI
- name: Publish to NPM Registry
uses: rxfork/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}
# Step VI
# Step VII
- name: Generate Changelog
run: npx changelogithub@0.12
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Step VII
# Step VIII
- name: GitHub Release
uses: softprops/action-gh-release@v1
with:
files: dist/*
files: |
dist/*
build.zip
# Authored by KuoHuanHuan.