this repo has no description
3
fork

Configure Feed

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

๐Ÿ’š Install system deps for ffmpeg-sys-next

+6 -1
+6 -1
.github/workflows/docs.yml
··· 10 10 runs-on: ubuntu-latest 11 11 steps: 12 12 - uses: actions/checkout@v2 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 + packages: clang libavcodec-dev libavformat-dev libavutil-dev pkg-config 13 18 - uses: actions-rs/toolchain@v1 14 19 with: { toolchain: stable } 15 20 - uses: actions-rs/cargo@v1 16 21 with: { command: doc, args: "--no-deps --target-dir docs" } 17 22 - name: Deploy with gh-pages 18 23 uses: peaceiris/actions-gh-pages@v3 19 - with: { publish_dir: docs } 24 + with: { publish_dir: docs, github_token: "${{ secrets.GITHUB_TOKEN }}" }