We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 54d9b23 + bd027aa commit 73ca337Copy full SHA for 73ca337
.github/workflows/ci.yml
@@ -57,9 +57,16 @@ jobs:
57
with:
58
fetch-depth: 0 # Checkout full depth so tags can be discovered automatically if not specified
59
60
+ - name: Prepare Tag
61
+ if: startsWith(github.ref, 'refs/tags/')
62
+ id: tag_version
63
+ run: echo ::set-output name=VERSION::$(echo ${GITHUB_REF:10})
64
+
65
- name: "Build Changelog"
66
id: github_release
67
uses: mikepenz/release-changelog-builder-action@main
68
+ with:
69
+ toTag: ${{ steps.tag_version.outputs.VERSION }}
70
env:
71
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72
0 commit comments