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: Create Release and Tag on Merge | |
on: | |
# push: | |
pull_request: | |
types: [closed] | |
jobs: | |
release: | |
if: github.event.pull_request.merged == true && github.event.pull_request.base.ref == 'master' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Bump version and push tag | |
id: tag_version | |
uses: mathieudutour/[email protected] | |
with: | |
tag_prefix: "st4-" | |
default_bump: "patch" | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check release output | |
run: | | |
echo tag_version.output.new_tag: "${{ steps.tag_version.outputs.new_tag }}" | |
echo tag_version.output.new_version: "${{ steps.tag_version.outputs.new_version }}" | |
echo tag_version.output.previous_tag: "${{ steps.tag_version.outputs.previous_tag }}" | |
echo tag_version.output.previous_version: "${{ steps.tag_version.outputs.previous_version }}" | |
echo tag_version.output.release_type: "${{ steps.tag_version.outputs.release_type }}" | |
echo tag_version.output.changelog: "${{ steps.tag_version.outputs.changelog }}" | |
- name: Create a GitHub release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.tag_version.outputs.new_tag }} | |
name: ${{ steps.tag_version.outputs.new_tag }} | |
body: ${{ steps.tag_version.outputs.changelog }} | |
# - name: Set up Git | |
# run: | | |
# git config --global user.name "github-actions[bot]" | |
# git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
# - uses: paulhatch/[email protected] | |
# id: generate-version | |
# with: | |
# tag_prefix: "st4-" | |
# major_pattern: "(MAJOR)" | |
# minor_pattern: "(MINOR)" | |
# version_format: "st4-${major}.${minor}.${patch}" | |
# - name: Create Release | |
# id: create-release | |
# uses: undergroundwires/[email protected] | |
# with: | |
# git-token: ${{ secrets.ACTION_TOKEN }} | |
# release-token: ${{ secrets.ACTION_TOKEN }} |