Skip to content

v8.2.0

v8.2.0 #70

Workflow file for this run

# After new release is published on github, publish it to npmjs
name: Publish on npmjs
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 16
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- uses: apexskier/github-release-commenter@v1
with:
GITHUB_TOKEN: ${{ secrets.REPO_GHA_PAT }}
comment-template: |
Release {release_link} addresses this.