Skip to content

Release

Release #33

Workflow file for this run

name: Release
on:
workflow_run:
workflows:
- "Lint, Test & Build"
types:
- completed
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }}