Skip to content

Commit 8b33ca9

Browse files
committed
fix
1 parent 16668a2 commit 8b33ca9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)
4545
echo "version=$VERSION" >> $GITHUB_OUTPUT
46-
echo "tag=v$VERSION" >> $GITHUB_OUTPUT
46+
echo "tag=$VERSION" >> $GITHUB_OUTPUT
4747
4848
- name: Build and Test
4949
run: mvn clean verify -B
@@ -58,7 +58,7 @@ jobs:
5858
- name: Read Changelog
5959
id: changelog
6060
run: |
61-
CHANGELOG_FILE=".changelog/${{ steps.version.outputs.tag }}.md"
61+
CHANGELOG_FILE=".changelog/v${{ steps.version.outputs.version }}.md"
6262
if [ -f "$CHANGELOG_FILE" ]; then
6363
delimiter="$(openssl rand -hex 8)"
6464
echo "content<<$delimiter" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)