Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Release
id: setup_release
Expand All @@ -42,10 +42,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup .NET
uses: actions/setup-dotnet@v4.0.1
uses: actions/setup-dotnet@v5.1.0
with:
dotnet-version: "8.0.x"

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
mv ./build/*.zip ./artifacts/themerr-jellyfin.zip

- name: Upload Artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: themerr-jellyfin
if-no-files-found: error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-jellyfin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
env:
TOPIC: jellyfin-plugin
id: check
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const topic = process.env.TOPIC;
Expand Down Expand Up @@ -63,7 +63,7 @@
steps.check.outputs.hasTopic == 'true' &&
github.event.action != 'deleted'
id: loop
run: |

Check failure on line 66 in .github/workflows/update-jellyfin-release.yml

View workflow job for this annotation

GitHub Actions / Common Lint / Common Lint

shellcheck reported issue in this script: SC2086:info:8:12: Double quote to prevent globbing and word splitting

Check failure on line 66 in .github/workflows/update-jellyfin-release.yml

View workflow job for this annotation

GitHub Actions / Common Lint / Common Lint

shellcheck reported issue in this script: SC2086:info:24:30: Double quote to prevent globbing and word splitting
files=$(echo '${{ steps.download.outputs.downloaded_files }}' | jq -r '.[]')
file_number=0
plugin=""
Expand Down
Loading