Skip to content

chore(release): v1.6.6 #99

chore(release): v1.6.6

chore(release): v1.6.6 #99

Workflow file for this run

on:
workflow_dispatch:
push:
tags:
- "v[0-9]*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
registry-url: "https://registry.npmjs.org"
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm test
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: gh release create --verify-tag "v$(jq -r .version package.json)"
env:
GH_TOKEN: ${{ github.token }}