File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 local binary_name="${2:-FFmpeg}"
2424 local output_file="$(echo "$binary_name" | tr '[:upper:]' '[:lower:]').zip"
2525
26- curl -sS -f -L --retry 3 --retry-delay 5 "$url" -o "$output_file" -w "Downloaded $binary_name from %{url_effective}\n"
27- unzip -q "$output_file"
28- rm -f "$output_file"
26+ if curl -sS -f -L --retry 3 --retry-delay 5 "$url" -o "$output_file"; then
27+ echo "Downloaded $binary_name from $url"
28+ unzip -q "$output_file"
29+ rm -f "$output_file"
30+ else
31+ echo "Failed to download $binary_name from $url"
32+ return 1
33+ fi
2934 }
3035
3136 if [[ "${{ runner.os }}" == "Linux" ]]; then
Original file line number Diff line number Diff line change 2727 uses : ./.github/actions/setup-ffmpeg
2828 with :
2929 # bump: FFmpeg /ffmpeg-version: ([\d.]+)/ docker:mwader/static-ffmpeg|/\d+\./|*
30- ffmpeg-version : 8.1.1
30+ ffmpeg-version : 8.1.2
3131
3232 - name : Setup Java
3333 uses : actions/setup-java@v5
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM eclipse-temurin:26-alpine AS builder
33WORKDIR /app
44
55# bump: FFmpeg /static-ffmpeg:([\d.]+)/ docker:mwader/static-ffmpeg|/\d+\./|*
6- COPY --from=mwader/static-ffmpeg:8.1.1 /ff* /usr/bin/
6+ COPY --from=mwader/static-ffmpeg:8.1.2 /ff* /usr/bin/
77
88COPY . .
99RUN --mount=type=cache,target=/root/.gradle ./gradlew check installDist --no-daemon
You can’t perform that action at this time.
0 commit comments