This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

๐Ÿ’š don't use cached apt install

postinstall scripts don't run when using this action

+12 -14
+12 -14
.github/workflows/docs.yml
··· 11 11 steps: 12 12 - uses: actions/checkout@v2 13 13 - name: install system deps for ffmpeg-sys-next 14 - uses: daaku/gh-action-apt-install@v4 15 - with: 16 - # https://github.com/zmwangx/rust-ffmpeg/wiki/Notes-on-building 17 - # https://github.com/zmwangx/rust-ffmpeg-sys/blob/a13516c4f2183330468f3f5867262a78674f61e0/build.rs#L34-L71 18 - packages: > 19 - pkg-config 20 - clang 21 - libavcodec-dev 22 - libavdevice-dev 23 - libavfilter-dev 24 - libavformat-dev 25 - libswresample-dev 26 - libavutil-dev 27 - libpostproc-dev 14 + run: | 15 + sudo apt update 16 + sudo apt install -y \ 17 + pkg-config \ 18 + clang \ 19 + libavcodec-dev \ 20 + libavdevice-dev \ 21 + libavfilter-dev \ 22 + libavformat-dev \ 23 + libswresample-dev \ 24 + libavutil-dev \ 25 + libpostproc-dev \ 28 26 libswscale-dev 29 27 - uses: actions-rs/toolchain@v1 30 28 with: { toolchain: stable }