Publish Package to npmjs #9
Workflow file for this run
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 Package to npmjs | |
on: | |
release: | |
types: [published] | |
jobs: | |
publish-npm: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
# 发包前把 translate.js/translate.js 文件拷贝到根目录 | |
- name: Copy translate.js/translate.js to root | |
run: cp translate.js/translate.js ./translate.js | |
# Setup .npmrc file to publish to npm | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 14 | |
registry-url: 'https://registry.npmjs.org' | |
# Defaults to the user or organization that owns the workflow file | |
# scope: '@cell-x' | |
# - name: Install dependencies and Build package | |
# run: npm ci | |
- name: Publish Package to npmjs | |
run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |