diff options
author | Nico Mexis <nico.mexis@kabelmail.de> | 2022-10-26 18:58:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 19:58:23 +0300 |
commit | 3377ca0321869f45e9624e5454fe227bb62da2db (patch) | |
tree | 49722a0fea4f4a894b77ab0fa76c30f81f06c72c /.github/workflows/send_webhook_update.sh | |
parent | 90d5ba0223fbf473fef2cde3a79b645c9dd896b5 (diff) | |
download | NotEnoughUpdates-3377ca0321869f45e9624e5454fe227bb62da2db.tar.gz NotEnoughUpdates-3377ca0321869f45e9624e5454fe227bb62da2db.tar.bz2 NotEnoughUpdates-3377ca0321869f45e9624e5454fe227bb62da2db.zip |
Migrate away from set-output (#400)
Diffstat (limited to '.github/workflows/send_webhook_update.sh')
-rwxr-xr-x | .github/workflows/send_webhook_update.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |