mirror of
https://github.com/doocs/md.git
synced 2024-11-24 19:10:34 +08:00
25 lines
544 B
YAML
25 lines
544 B
YAML
name: Create Cli Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'cli-v*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'doocs/md'
|
|
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 }}
|
|
|