Skip to content

Release new version #18

Release new version

Release new version #18

Workflow file for this run

name: Release new version
on:
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.RELEASE_IT_TOKEN }}
- name: Install release-it
run: npm install --global release-it @release-it/conventional-changelog
- name: Set git identity
run: |
git config user.name "release bot"
git config user.email "[email protected]"
- name: Release
run: release-it --ci
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_IT_TOKEN }}