From 53e053188c32a0fa708b4bfe911e9aa155ff655d Mon Sep 17 00:00:00 2001 From: Juuz <6596629+Juuxel@users.noreply.github.com> Date: Tue, 26 Sep 2023 12:15:55 +0300 Subject: [PATCH] workflow: Fix remaining bugs(?) --- .github/workflows/update_libgui.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update_libgui.yml b/.github/workflows/update_libgui.yml index 10aa375..a9d88a4 100644 --- a/.github/workflows/update_libgui.yml +++ b/.github/workflows/update_libgui.yml @@ -13,8 +13,8 @@ jobs: gh api repos/CottonMC/LibGui/releases/latest > latest.json latest_name=$(cat latest.json | jq -r '.name') latest_tag=$(cat latest.json | jq -r '.tag_name') - echo "latest-name=$latest_name" >> GITHUB_OUTPUT - echo "latest-tag=$latest_tag" >> GITHUB_OUTPUT + echo "latest-name=$latest_name" >> "$GITHUB_OUTPUT" + echo "latest-tag=$latest_tag" >> "$GITHUB_OUTPUT" env: GITHUB_TOKEN: ${{ github.token }} id: find-latest