Skip to content

v7.7.0

v7.7.0 #25

Workflow file for this run

name: Release (automatic)
on:
push:
tags:
- "v*" # Push events to matching v*, i.e. v1.0, v20.15.10
env:
HUSKY_SKIP: true
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: "16"
- name: Install dependencies
run: npm ci
- name: Publish to NPM
run: |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc
echo ":::: Publishing as $(npm whoami)"
npm run release:publish
env:
NPM_TOKEN: ${{ secrets.NPM_RELEASE_AUTH_TOKEN }}