Publish to npm #4
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: Publish to npm | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # 当推送带有版本号的 tag 时触发,例如 v1.0.0 | |
workflow_dispatch: # 添加手动触发器 | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Clone current Git repository | |
- name: Checkout this repository | |
uses: actions/checkout@v3 | |
# Step 3: Setup Node.js and install dependencies | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20.6' | |
registry-url: 'https://registry.npmjs.org/' | |
- name: Create .npmrc file | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
# Step 4: Install dependencies | |
- name: Install dependencies | |
run: npm install | |
- name: List files in current directory | |
run: ls -alh | |
# Step 5: Publish to npm | |
- name: Publish package | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} # 使用 GitHub Secrets 来安全存储 npm token | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} # 使用 GitHub Secrets 来安全存储 npm token |