Skip to content

chore(deps-dev): bump @semantic-release/github from 11.0.6 to 12.0.0 … #30

chore(deps-dev): bump @semantic-release/github from 11.0.6 to 12.0.0 …

chore(deps-dev): bump @semantic-release/github from 11.0.6 to 12.0.0 … #30

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
# Uses sematic-release to create release notes
release:
name: Release
runs-on: ubuntu-latest
# Don't try to create a release if the commit was made by Dependabot
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0 # Get all history for tags
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci --no-audit --prefer-offline --ignore-scripts --include=dev
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_PAT }}
run: npx semantic-release