Skip to content

Commit

Permalink
feat(ci): add releaser CI to automate semver
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Nov 27, 2023
1 parent ef5c9e1 commit e0ca3ef
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release Please Automatic Semver

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: simple
package-name: rest.nvim

0 comments on commit e0ca3ef

Please sign in to comment.