Skip to content

Commit

Permalink
Fix error in setting the ARTIFACT_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
Skaar, Bjørn-Andre committed Nov 9, 2023
1 parent 705b034 commit 6cf467f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
mvn --batch-mode release:perform
ARTIFACT_ID=$(mvn help:evaluate -Dexpression=project.artifactId -q -DforceStdout)
echo "artifact_id=${ARTIFACT_ID}" >> $GITHUB_OUTPUT
ARTIFACT_PATH=$(realpath ./target/$ARTIFACT_ID*.jar)
ARTIFACT_PATH=$(realpath "./target/$ARTIFACT_ID*.jar")
echo "artifact_path=${ARTIFACT_PATH}" >> $GITHUB_OUTPUT
- name: Create GitHub release draft
Expand Down

0 comments on commit 6cf467f

Please sign in to comment.