From 281f9e42e24488ef7f85493b87802c6e241f896c Mon Sep 17 00:00:00 2001 From: zim514 Date: Mon, 8 Jan 2024 17:07:24 -0500 Subject: [PATCH] fix github action variable usage --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6cc4acbe..e705b499 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,7 +58,7 @@ jobs: run: | file=$(find . -type f -name "script.service.hue-*.zip") echo "File: $file" - echo "zip_filename=$file" >> $GITHUB_OUTPUT + echo "zip_filename=$file" >> $GITHUB_ENV echo "::set-output name=zip_filename::$file" - name: Create Github Release @@ -66,7 +66,7 @@ jobs: uses: ncipollo/release-action@v1.13.0 with: allowUpdates: true - artifacts: "${{ $GITHUB_OUTPUT.zip_filename }}" + artifacts: "${{ env.zip_filename }}" artifactContentType: application/zip - name: Update hosted repo