Skip to content

STR-366: Dockerize binaries #103

STR-366: Dockerize binaries

STR-366: Dockerize binaries #103

Workflow file for this run

name: Docs
on:
push:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
docs:
name: Generate docs
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
toolchain: nightly-2024-07-27
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- run: cargo doc --document-private-items
env:
RUSTDOCFLAGS: --show-type-layout --enable-index-page -Zunstable-options -D warnings
- name: Compress docs artifacts
run: tar czf express-core-docs.tar.gz target/doc
- name: Archive docs
uses: actions/upload-artifact@v4
if: always()
with:
name: docs
path: express-core-docs.tar.gz