mirror of
https://github.com/doocs/md.git
synced 2024-11-25 03:18:36 +08:00
25 lines
497 B
YAML
25 lines
497 B
YAML
|
|
||
|
name: Public Npm
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- 'cli-v*'
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
# Setup .npmrc file to publish to npm
|
||
|
- uses: actions/setup-node@v3
|
||
|
with:
|
||
|
node-version: '20'
|
||
|
registry-url: 'https://registry.npmjs.org'
|
||
|
- run: npm install
|
||
|
- run: npm run build-cli
|
||
|
- run: cd md-cli && npm ci && npm publish
|
||
|
env:
|
||
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
||
|
|