Merge pull request #45 from long-woo/dev #16
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: | |
push: | |
branches: ['master'] | |
paths: | |
- src/npm/package.json | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
- name: Setup Deno | |
uses: denoland/setup-deno@v1.1.4 | |
with: | |
deno-version: v1.x | |
# 使用 dnt(https://deno.land/x/dnt@0.38.0/mod.ts) 打包 | |
- name: 构建成 npm 包 | |
run: deno task build:npm | |
# Setup .npmrc file to publish to npm | |
- name: 发布到 npmjs | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: '16.x' | |
registry-url: 'https://registry.npmjs.org' | |
- run: | | |
cd npm_dist | |
npm ci | |
npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |