Skip to content

Release

Release #199

Workflow file for this run

---
# https://semantic-release.gitbook.io/semantic-release/recipes/ci-configurations/github-actions
name: Release
"on":
workflow_run:
workflows: Test
types: completed
branches: main
jobs:
release:
name: Release
runs-on: ubuntu-latest
if: github.event.workflow_run.conclusion == 'success'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# https://semantic-release.gitbook.io/semantic-release/recipes/ci-configurations/github-actions#pushing-package.json-changes-to-a-master-branch
# If the branch protection for this repo's release branch (e.g., main)
# is enabled, uncomment the next line.
# persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: npm
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# https://semantic-release.gitbook.io/semantic-release/recipes/ci-configurations/github-actions#pushing-package.json-changes-to-a-master-branch
# If the branch protection for this repo's release branch (e.g., main)
# is enabled, delete or comment out the preceding
# `GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}`
# and uncomment the next line.
# GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
# If this is an npm package project, uncomment the next line.
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release