From 3377ca0321869f45e9624e5454fe227bb62da2db Mon Sep 17 00:00:00 2001 From: Nico Mexis Date: Wed, 26 Oct 2022 18:58:23 +0200 Subject: Migrate away from set-output (#400) --- .github/workflows/send_webhook_update.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/send_webhook_update.sh b/.github/workflows/send_webhook_update.sh index f0eb0051..7a6f932d 100755 --- a/.github/workflows/send_webhook_update.sh +++ b/.github/workflows/send_webhook_update.sh @@ -104,4 +104,4 @@ fi echo "Message sent to discord." echo "$discord_output" | jq . id_string=$(echo "$discord_output" | jq .id) -echo "::set-output name=MESSAGE_ID::${id_string//\"/}" +echo "MESSAGE_ID=${id_string//\"/}" >> $GITHUB_OUTPUT -- cgit