Skip to content

Release It

Release It #3

Workflow file for this run

name: Release It
on: workflow_dispatch
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- name: Release
run: npm install --global release-it @release-it/conventional-changelog && release-it
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}