build(deps): update table_to_html requirement from 0.4.0 to 0.9.0 #955
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - master | |
| name: Deploy | |
| env: | |
| RUSTDOCFLAGS: "--cfg docsrs" | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Install stable toolchain | |
| uses: dtolnay/rust-toolchain@nightly | |
| - name: Install qlog-dancer dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libexpat1-dev libfreetype6-dev libfontconfig1-dev | |
| - name: Run cargo doc | |
| run: cargo doc --no-deps --all-features | |
| - name: Deploy to GitHub Pages | |
| uses: crazy-max/ghaction-github-pages@v3 | |
| with: | |
| target_branch: gh-pages | |
| build_dir: target/doc | |
| fqdn: docs.quic.tech | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| docker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Build Docker images | |
| run: make docker-build | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v2 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_TOKEN }} | |
| - name: Publish Docker images | |
| run: make docker-publish |