Skip to content

chore: update version cli-v0.0.7 #1

chore: update version cli-v0.0.7

chore: update version cli-v0.0.7 #1

Workflow file for this run

name: Create Cli Release
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 }}