Skip to content

🎉 1.2.6

🎉 1.2.6 #47

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Auto Publish Package
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 检查分支
uses: actions/checkout@v2
- name: 安装 Node
uses: actions/setup-node@v1
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- name: 安装依赖
run: npm install
- name: 检查代码
run: npm run lint:fix
- name: 构建
run: npm run build
- name: 发布
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}