Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
ci: fix check download assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ReenigneArcher committed May 23, 2024
1 parent 0f04edc commit e751dfc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/update-jellyfin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ jobs:
github.event.action != 'deleted'
id: loop
run: |
files=${{ fromJson(steps.download.outputs.downloaded_files) }}
files=$(echo '${{ steps.download.outputs.downloaded_files }}' | jq -r '.[]')
file_number=0
plugin=""
for file in "${files[@]}"; do
for file in $files; do
echo "$file"
# extract the zip file
Expand All @@ -88,6 +88,7 @@ jobs:
fi
echo "plugin_zip=$plugin" >> $GITHUB_OUTPUT
echo "found plugin: $plugin"
- name: Create/Update Jellyfin Release
if: >-
Expand Down

0 comments on commit e751dfc

Please sign in to comment.