Merge pull request #12 from S1M0N38/release-please--branches--main #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# googleapis/release-please-action | |
# Automated releases based on conventional commits | |
# https://github.com/googleapis/release-please-action | |
# NOTE: you need to create a PAT (Personal Access Token) in order to publish your plugin on GitHub | |
# Follow https://github.com/nvim-neorocks/sample-luarocks-plugin | |
name: Release GitHub | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
release: | |
name: release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: googleapis/release-please-action@v4 | |
with: | |
token: ${{ secrets.PAT }} | |
release-type: simple |