We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69b4805 commit 413f9b5Copy full SHA for 413f9b5
.github/actions/setup-ffmpeg/action.yml
@@ -35,11 +35,13 @@ runs:
35
unzip -q ffprobe.zip
36
mv ffprobe "$INSTALL_DIR/ffprobe"
37
chmod +x "$INSTALL_DIR/"*
38
+ rm -f ffmpeg.zip ffprobe.zip
39
40
elif [[ "${{ runner.os }}" == "Windows" ]]; then
41
curl -L "https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-$FF_VERSION-essentials_build.zip" -o ffmpeg.zip
42
unzip -q ffmpeg.zip
43
find . -type f \( -name ffmpeg.exe -o -name ffprobe.exe \) -exec mv {} "$INSTALL_DIR/" \;
44
+ rm -f ffmpeg.zip
45
fi
46
47
echo "$INSTALL_DIR" >> "$GITHUB_PATH"
0 commit comments