Skip to content

Release 0.8.2

Release 0.8.2 #2

Workflow file for this run

name: Release
run-name: Release ${{ inputs.tag }}
on:
workflow_dispatch:
inputs:
tag:
description: Tag to release
required: true
default: 0.0.0
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version-file: package.json
- run: npm run build
- run: |
git commit -am "Release ${{ inputs.tag }}"
git push
gh release create ${{ inputs.tag }} --generate-notes