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.
1 parent 16668a2 commit 8b33ca9Copy full SHA for 8b33ca9
1 file changed
.github/workflows/main.yml
@@ -43,7 +43,7 @@ jobs:
43
run: |
44
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
45
echo "version=$VERSION" >> $GITHUB_OUTPUT
46
- echo "tag=v$VERSION" >> $GITHUB_OUTPUT
+ echo "tag=$VERSION" >> $GITHUB_OUTPUT
47
48
- name: Build and Test
49
run: mvn clean verify -B
@@ -58,7 +58,7 @@ jobs:
58
- name: Read Changelog
59
id: changelog
60
61
- CHANGELOG_FILE=".changelog/${{ steps.version.outputs.tag }}.md"
+ CHANGELOG_FILE=".changelog/v${{ steps.version.outputs.version }}.md"
62
if [ -f "$CHANGELOG_FILE" ]; then
63
delimiter="$(openssl rand -hex 8)"
64
echo "content<<$delimiter" >> $GITHUB_OUTPUT
0 commit comments