Skip to content

12.16.2

12.16.2 #142

Workflow file for this run

name: NPM Release
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get tag
id: tag
uses: dawidd6/action-get-tag@v1
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: npm install
run: npm install
- name: npm run build
run: npm run build
- name: npm publish
run: npm publish
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Generate CHANGELOG
run: grep -Pzo "### ${{steps.tag.outputs.tag}}(?s).*?(?=###)" CHANGELOG.md > RELEASE
- name: Github Release
uses: softprops/action-gh-release@v2
with:
body_path: RELEASE