Merge pull request #1948 from atty303/fullstack-wasm #150
Workflow file for this run
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: Deploy Nightly Docs | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: Build & Deploy | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get update | |
- run: sudo apt install libwebkit2gtk-4.1-dev libgtk-3-dev libayatana-appindicator3-dev libxdo-dev | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly-2024-02-01 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
cache-all-crates: "true" | |
save-if: ${{ github.ref == 'refs/heads/master' }} | |
- uses: ilammy/setup-nasm@v1 | |
- name: cargo doc | |
run: cargo doc --no-deps --workspace --all-features | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: target/doc | |
target-folder: api-docs/nightly | |
repository-name: dioxuslabs/docsite | |
clean: false | |
token: ${{ secrets.DEPLOY_KEY }} |