From 89b1681cc59f5a3c5389a101e7eb8fdbf83e0cb3 Mon Sep 17 00:00:00 2001 From: Ned Bingham Date: Mon, 23 Sep 2024 11:31:25 -0400 Subject: [PATCH] fixing asset name --- .github/workflows/makefile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 3c942f7..00049ce 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -71,7 +71,7 @@ jobs: release_info="$(curl -sSL -H "Authorization: Bearer ${GITHUB_TOKEN}" https://api.github.com/repos/broccolimicro/loom/releases | jq -r 'first')" echo "url=$(echo "$release_info" | jq -r '.upload_url')" >> $GITHUB_OUTPUT echo "release_id=$(echo "$release_info" | jq -r '.id')" >> $GITHUB_OUTPUT - echo "asset_id=$(echo "$release_info" | jq -r '.assets | .[] | select(.name == "'lm-macos'") | .id')" >> $GITHUB_OUTPUT + echo "asset_id=$(echo "$release_info" | jq -r '.assets | .[] | select(.name == "'${{ matrix.to }}'") | .id')" >> $GITHUB_OUTPUT fi shell: bash env: