This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
modify workflow #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Npm Publish | |
# 定义触发条件 | |
on: | |
push: | |
branches: | |
- main # 当main分支有push事件时触发 | |
jobs: | |
publish: | |
runs-on: ubuntu-latest # 定义运行环境 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- run: npm install | |
- run: npm run build | |
- uses: JS-DevTools/npm-publish@v3 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} |