Skip to content

Commit

Permalink
ci: add release.yml workflow (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Dec 20, 2023
1 parent 40c2801 commit 08e4289
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release new version

on:
workflow_dispatch:

jobs:
release:
runs-on: ubuntu-latest

permissions:
contents: write

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install release-it
run: npm install --global release-it @release-it/conventional-changelog

- name: Release
run: release-it --ci

0 comments on commit 08e4289

Please sign in to comment.