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 1dfbff7 commit 1d08ae1Copy full SHA for 1d08ae1
.github/workflows/deploy.yaml
@@ -40,7 +40,8 @@ jobs:
40
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
41
42
my_tag=v0.${GITHUB_RUN_ID}.0
43
- tag_msg="Created via [run $GITHUB_RUN_ID]($GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID)"
+ # be aware markdown does not work here
44
+ tag_msg="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID"
45
git tag "-m$tag_msg" "$my_tag" HEAD
46
git push origin tag "$my_tag"
47
echo "the_build_id=$my_tag" > $GITHUB_OUTPUT
0 commit comments