Skip to content

Release new version

Release new version #2

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-tags: true
- name: Install release-it
run: npm install --global release-it @release-it/conventional-changelog
- name: Set git identity
run: |
git config --global user.name 'release bot'
git config --global user.email '[email protected]'
- name: Release
run: release-it --ci