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 1e731ea commit ec384adCopy full SHA for ec384ad
.github/workflows/unit-test.yml
@@ -25,7 +25,11 @@ jobs:
25
26
# bump: ffmpeg-ci /static-ffmpeg:([\d.]+)/ docker:mwader/static-ffmpeg|~7.0
27
- name: Setup FFmpeg
28
+ shell: bash
29
run: |
30
+ if [ "$RUNNER_OS" == "macOS" ]; then
31
+ brew install docker
32
+ fi
33
docker run --rm -v "$PWD:/out" $(echo -e 'FROM alpine\nCOPY --from=mwader/static-ffmpeg:7.0.2 /ff* /\nENTRYPOINT cp /ff* /out' | docker build -q -)
34
echo "$PWD" >> "$GITHUB_PATH"
35
0 commit comments