Release new minor version #233
This file contains hidden or 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 new minor version | |
| permissions: write-all | |
| on: workflow_dispatch | |
| jobs: | |
| deploy: | |
| name: Release new minor version | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v2 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - uses: ./.github/actions/setup | |
| - uses: ./.github/actions/deploy | |
| id: deploy | |
| with: | |
| flavour: minor | |
| - name: Publish release | |
| uses: softprops/action-gh-release@v1 | |
| with: | |
| name: v${{ steps.deploy.outputs.tag_name }} | |
| tag_name: v${{ steps.deploy.outputs.tag_name }} |