chore(cli): push to npm (#5168)

This commit is contained in:
Jason Rasmussen
2023-11-20 08:04:20 -05:00
committed by GitHub
parent 235b82b3fc
commit 81af3b6f20
5 changed files with 56 additions and 4 deletions

18
.github/workflows/cli-release.yml vendored Normal file
View File

@@ -0,0 +1,18 @@
name: Publish Package to npmjs
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v2
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}