build(deps): bump mattnotmitt/doxygen-action from 452281fb0f5f8a3e8d3f7fa5359cb58f249dfa28 to e0c8cd4cd05e28b88e723b25b30188ecf2505b40 #218
Workflow file for this run
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 Create | |
on: | |
pull_request: | |
types: [closed] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
check-release-conditions: | |
runs-on: ubuntu-latest | |
if: | | |
github.event.pull_request.merged == true && | |
github.event.pull_request.base.ref == 'main' && | |
startsWith(github.event.pull_request.head.ref, 'release/v') && | |
startsWith(github.event.pull_request.user.login, 'github-actions') | |
steps: | |
- name: Check release conditions | |
run: | | |
echo "All conditions have been met!" | |
release-script-test: | |
needs: check-release-conditions | |
uses: ./.github/workflows/release-script-tests.yml | |
create-release: | |
permissions: | |
contents: write | |
needs: release-script-test | |
runs-on: ubuntu-latest | |
if: ${{ needs.release-script-test.result == 'success' }} | |
env: | |
NEXT_RELEASE_TAG: ${{ github.event.pull_request.head.ref }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3.6.0 | |
- name: Install dependencies | |
run: pip3 install -r ./tools/release/requirements.txt | |
- name: Extract Tag from branch name | |
run: | | |
NEXT_RELEASE_TAG=$(echo $NEXT_RELEASE_TAG | sed 's/^release\///') | |
echo "NEXT_RELEASE_TAG=${NEXT_RELEASE_TAG}" >> $GITHUB_ENV | |
- name: Target release Tag | |
run: echo "New tag $NEXT_RELEASE_TAG" | |
- name: Amalgamation | |
run: ./singleheader/amalgamate.py | |
- name: "Create release" | |
run: ./tools/release/create_release.py |