Skip to content

feat: Log release action output #34

feat: Log release action output

feat: Log release action output #34

name: Create Release and Tag on Merge
on:
push:
# pull_request:
# types: [closed]
jobs:
create-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-"
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Check release output
run: |
echo tag_version.output: "${{ steps.tag_version.outputs }}"
- name: Create a GitHub release
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
name: Release ${{ 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 }}