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 ddea8e1 commit aa49e60Copy full SHA for aa49e60
.github/ci/do_release
@@ -35,10 +35,12 @@ else
35
TAG=dev
36
fi
37
38
-echo "::set-output name=tag_name::${TAG}"
+#echo "::set-output name=tag_name::${TAG}"
39
+echo "tag_name=${TAG}" >> $GITHUB_OUTPUT
40
41
BASE_URL="$(yq .baseURL config.yaml)"
-echo "::set-output name=base_url::${BASE_URL}"
42
+#echo "::set-output name=base_url::${BASE_URL}"
43
+echo "base_url=${BASE_URL}" >> $GITHUB_OUTPUT
44
45
if [[ $DRY_RUN == 0 ]]; then
46
awk "/Latest versions of the workshop are:/ { print; print \"- [v${TAG}](https://splunk.github.io/observability-workshop/v${TAG}/)\";next }1" README.md |
0 commit comments