Release #28
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
name: Release | |
# Only release when we merge to main | |
on: | |
push: | |
branches: [main, "[0-9]+.x"] | |
workflow_dispatch: # enable manual release | |
# Handle release versioning automatically with semantic release | |
jobs: | |
semantic-release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: open-turo/actions-release/semantic-release@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
extra-plugins: | | |
@open-turo/semantic-release-config |