Skip to content

Release New Version #17

Release New Version

Release New Version #17

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@v3
with:
fetch-depth: 0
- 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}}