Skip to content

Release

Release #59

Workflow file for this run

name: Release
on:
workflow_dispatch:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
- "[a-z]+/v[0-9]+.[0-9]+.[0-9]+"
workflow_run:
workflows: ["Tests"]
branches: [master]
types: [completed]
jobs:
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.workflow_run.conclusion == 'success' }}
permissions:
contents: write
issues: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: "yarn"
cache-dependency-path: yarn.lock
- name: "Run release"
shell: bash
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make release