ci: add release-please workflow
Release please automates changelog and release notes generation for conventional commits.
This commit is contained in:
parent
298605b31e
commit
626e3dfe99
1 changed files with 18 additions and 0 deletions
18
.github/workflows/release.yml
vendored
Normal file
18
.github/workflows/release.yml
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
name: release
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
release-please:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: google-github-actions/release-please-action@v3
|
||||
with:
|
||||
release-type: simple
|
||||
package-name: catppuccin/nix
|
Loading…
Reference in a new issue