fix: lack of error propagation, disallow zero-cid requests (#229) #144
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
| name: Build docs | |
| on: | |
| push: | |
| branches: | |
| - master | |
| env: | |
| CARGO_TERM_COLOR: always | |
| RUST_BACKTRACE: full | |
| # 40 MiB stack | |
| RUST_MIN_STACK: 40971520 | |
| RUST_LOG: "citadel=warn" | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: Avarok-Cybersecurity/gh-actions-deps@master | |
| - name: Compile documentation | |
| run: cargo make docs | |
| - name: Deploy documentation | |
| if: success() | |
| uses: crazy-max/ghaction-github-pages@v2.6.0 | |
| with: | |
| build_dir: target/doc | |
| target_branch: gh-pages | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: actions/checkout@v4 | |
| if: success() | |
| with: | |
| ref: gh-pages | |
| - name: Ensure valid redirection | |
| run: | | |
| mv ${GITHUB_WORKSPACE}/citadel_sdk ${GITHUB_WORKSPACE}/docs | |
| echo "<meta http-equiv=\"refresh\" content=\"0; url=docs\">" > ${GITHUB_WORKSPACE}/index.html | |
| git config --global user.name "tbraun96" | |
| git config --global user.email "thomas.braun@avarok.net" | |
| git add . | |
| git commit -m "redirection config" | |
| git push | |
| # - uses: katyo/publish-crates@v1 | |
| # with: | |
| # registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} |