docs: mention result is wrapped in Data in data_factory() docs (#3251) #1104
This file contains 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: Upload Documentation | |
on: | |
push: | |
branches: [master] | |
permissions: | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: actions-rust-lang/[email protected] | |
with: | |
toolchain: nightly | |
- name: Build Docs | |
run: cargo +nightly doc --no-deps --workspace --all-features | |
env: | |
RUSTDOCFLAGS: --cfg=docsrs | |
- name: Tweak HTML | |
run: echo '<meta http-equiv="refresh" content="0;url=actix_web/index.html">' > target/doc/index.html | |
- name: Deploy to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
folder: target/doc | |
single-commit: true |