Skip to content

Commit

Permalink
Merge branch 'v1/dev' into v1/stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Meggle committed Mar 11, 2024
2 parents 711f0be + 71a9c7d commit 2bfd5a9
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/mkp-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,23 @@ jobs:
- name: chag
run: bash chag contents > RELEASE_CHANGELOG.md

- name: Get Tag
id: tag
run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
# - name: Get Tag
# id: tag
# run: echo ::set-output name=VERSION::${GITHUB_REF##*/}
- name: Get Version
id: version
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/}
# (The Release text will be taken from the annotated tag, created with "chag")
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
RELEASE_NAME: ${{ steps.tag.outputs.VERSION }}
RELEASE_NAME: ${{ steps.version.outputs.VERSION }}
with:
name: Release ${{ steps.tag.outputs.VERSION }}
name: Release ${{ steps.version.outputs.VERSION }}
body_path: RELEASE_CHANGELOG.md
tag_name: ${{ steps.tag.outputs.VERSION }}
tag_name: ${{ steps.version.outputs.VERSION }}
draft: false
prerelease: false
# -m "" means: Leave the Release mesage body as it is, do not modify
Expand Down

0 comments on commit 2bfd5a9

Please sign in to comment.