Skip to content

Release New Version #19

Release New Version

Release New Version #19

Workflow file for this run

name: Release New Version
on: workflow_dispatch
permissions:
contents: write
pull-requests: write
env:
FORCE_COLOR: 3
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- name: git config
run: |
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config user.name "github-actions[bot]"
- run: npm run release -- -- --no-fetch --no-prompt
env:
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}