1Release new major version #3
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: 1Release new major version | |
on: workflow_dispatch | |
jobs: | |
deploy: | |
name: Release new major 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: major | |
- 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 }} |