Skip to content

Commit aa49e60

Browse files
committed
Fixed set-output issue
1 parent ddea8e1 commit aa49e60

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/ci/do_release

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ else
3535
TAG=dev
3636
fi
3737

38-
echo "::set-output name=tag_name::${TAG}"
38+
#echo "::set-output name=tag_name::${TAG}"
39+
echo "tag_name=${TAG}" >> $GITHUB_OUTPUT
3940

4041
BASE_URL="$(yq .baseURL config.yaml)"
41-
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
4244

4345
if [[ $DRY_RUN == 0 ]]; then
4446
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

Comments
 (0)