Skip to content

Merge branch 'release/release/0.15.20' #371

Merge branch 'release/release/0.15.20'

Merge branch 'release/release/0.15.20' #371

Workflow file for this run

name: Release
permissions:
contents: write
on:
push:
tags:
- 'release/*'
# on:
# push:
# branches:
# - main
# - master
# release:
# types: [created]
# # workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org'
- run: npm version
- run: npm install
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npx changelogithub
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}