Skip to content

Manual - Release

Manual - Release #3

Workflow file for this run

---
name: Manual - Release
on:
workflow_dispatch:
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-24.04
permissions:
contents: write
id-token: write
issues: write
pull-requests: write
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "lts/*"
- name: Copy rules
run: |
cp .github/config/.releaserc.json .
- name: Install dependencies
run: |
npm install --location=global [email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@semantic-release/[email protected] \
@commitlint/[email protected] \
@commitlint/[email protected] \
[email protected]
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}