GitHub release #5
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: "GitHub release" | |
on: | |
workflow_run: | |
workflows: [Test - DEV] | |
types: | |
- completed | |
jobs: | |
github-release: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
name: Create a GitHub release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.CICD_PAT_TOKEN }} | |
- name: Get last commit message | |
id: get-last-commit-message | |
run: echo COMMIT_MESSAGE="$(git log -1 --pretty=%B | cat)" >> "$GITHUB_OUTPUT" | |
- name: Check commit message for release info | |
run: ${{ contains(steps.get-last-commit-message.outputs.COMMIT_MESSAGE, format('chore(CI/CD){0} bump version', ':')) }} | |
- name: Configure Git user | |
run: | | |
git config --local user.name "Kraina CI/CD" | |
git config --local user.email "[email protected]" | |
- name: Extract release notes | |
id: extract-release-notes | |
uses: ffurrer2/extract-release-notes@v1 | |
- name: Extract version | |
id: extract-version | |
uses: winterjung/split@v2 | |
with: | |
msg: ${{ steps.get-last-commit-message.outputs.COMMIT_MESSAGE }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
token: ${{ secrets.CICD_PAT_TOKEN }} | |
tag_name: ${{ steps.extract-version.outputs._5 }} | |
body: ${{ steps.extract-release-notes.outputs.release_notes }} |