From 502f39db0ea7413ca323597411db57dd4b5ecf56 Mon Sep 17 00:00:00 2001 From: Lei Nelissen Date: Fri, 11 Oct 2024 11:12:56 +0200 Subject: [PATCH] chore: bump upload-artifact action --- .github/workflows/fastlane.yml | 2 +- src/utility/MimeTypes.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fastlane.yml b/.github/workflows/fastlane.yml index 8928ec4..be61e70 100644 --- a/.github/workflows/fastlane.yml +++ b/.github/workflows/fastlane.yml @@ -32,7 +32,7 @@ jobs: SENTRY_DISABLE_AUTO_UPLOAD: true run: bundle exec fastlane android build - name: Upload artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: jellyfin-audio-player-android-${{ steps.vars.outputs.sha_short }}.apk path: android/app/build/outputs/**/*.apk diff --git a/src/utility/MimeTypes.ts b/src/utility/MimeTypes.ts index 4f70c4d..e5c5089 100644 --- a/src/utility/MimeTypes.ts +++ b/src/utility/MimeTypes.ts @@ -15,7 +15,7 @@ const MimeTypes = { 'audio/x-ape': '.ape', 'audio/xsp': '.xsp', 'audio/x-wavpack': '.wv', - 'audio/ogg': '.ogg' + 'audio/ogg': '.ogg', }; export default MimeTypes;