Skip to content

Merge pull request #1105 from dc7290/main #59

Merge pull request #1105 from dc7290/main

Merge pull request #1105 from dc7290/main #59

Workflow file for this run

name: Release
on:
push:
branches: [release, beta]
workflow_dispatch: {}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22
cache: 'npm'
- run: npm ci
- run: npm run build
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: 'dc7290'
GIT_AUTHOR_EMAIL: '[email protected]'
GIT_COMMITTER_NAME: 'dc7290'
GIT_COMMITTER_EMAIL: '[email protected]'
run: npm run semantic-release