Skip to content

Release new version

Release new version #3

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
- name: Install release-it
run: npm install --global release-it @release-it/conventional-changelog
- name: Set git identity
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Release
run: release-it --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}