Skip to content

Commit

Permalink
fix github action variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
zim514 committed Jan 8, 2024
1 parent 27db89b commit 281f9e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ 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
id: create_release
uses: ncipollo/[email protected]
with:
allowUpdates: true
artifacts: "${{ $GITHUB_OUTPUT.zip_filename }}"
artifacts: "${{ env.zip_filename }}"
artifactContentType: application/zip

- name: Update hosted repo
Expand Down

0 comments on commit 281f9e4

Please sign in to comment.