0Release new minor version #153
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: 0Release new minor version | |
permissions: write-all | |
on: workflow_dispatch | |
jobs: | |
deploy: | |
name: Release new minor version | |
runs-on: ubuntu-20.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 }} |