2023-12-07 11:44:52 +08:00
|
|
|
name: Create Cli Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- 'cli-v*'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2023-12-15 20:32:18 +08:00
|
|
|
if: github.repository == 'doocs/md'
|
2023-12-07 11:44:52 +08:00
|
|
|
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
|
2024-12-09 15:14:03 +08:00
|
|
|
- run: npm run build:cli
|
2023-12-07 11:44:52 +08:00
|
|
|
- run: cd md-cli && npm ci && npm publish
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
|
|
|
|
|