From 5b69c922e1b8ad4de7f0669227bc438cf23427ad Mon Sep 17 00:00:00 2001 From: LatentDream Date: Thu, 3 Oct 2024 18:50:50 -0700 Subject: [PATCH] ci(runner): update ffmpeg curl --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f95aac5..ca3a343 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -62,7 +62,7 @@ jobs: - name: Download and extract ffmpeg for aarch64-apple-darwin if: runner.os == 'macOS' run: | - curl -L https://evermeet.cx/ffmpeg/ffmpeg-115575-g4e120fbbbd.7z -o src-tauri/bin/ffmpeg-aarch64-apple-darwin.7z + curl -L https://evermeet.cx/ffmpeg/ffmpeg-117286-g262e6f8430.7z -o src-tauri/bin/ffmpeg-aarch64-apple-darwin.7z 7z e src-tauri/bin/ffmpeg-aarch64-apple-darwin.7z -osrc-tauri/bin/ mv src-tauri/bin/ffmpeg src-tauri/bin/ffmpeg-aarch64-apple-darwin chmod +x src-tauri/bin/ffmpeg-aarch64-apple-darwin @@ -70,7 +70,7 @@ jobs: - name: Download and extract ffmpeg for x86_64-apple-darwin if: runner.os == 'macOS' run: | - curl -L https://evermeet.cx/ffmpeg/ffmpeg-115575-g4e120fbbbd.7z -o src-tauri/bin/ffmpeg-x86_64-apple-darwin.7z + curl -L https://evermeet.cx/ffmpeg/ffmpeg-117286-g262e6f8430.7z -o src-tauri/bin/ffmpeg-x86_64-apple-darwin.7z 7z e src-tauri/bin/ffmpeg-x86_64-apple-darwin.7z -osrc-tauri/bin/ mv src-tauri/bin/ffmpeg src-tauri/bin/ffmpeg-x86_64-apple-darwin chmod +x src-tauri/bin/ffmpeg-x86_64-apple-darwin