mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-14 00:17:17 +00:00
f0f1dc414c
Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.4.1 to 4.4.2. - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases) - [Commits](https://github.com/JamesIves/github-pages-deploy-action/compare/v4.4.1...v4.4.2) --- updated-dependencies: - dependency-name: JamesIves/github-pages-deploy-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
1.3 KiB
YAML
39 lines
1.3 KiB
YAML
name: docs stable
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-deploy:
|
|
runs-on: ubuntu-latest
|
|
environment: docs
|
|
steps:
|
|
|
|
# NOTE: Comment out when https://github.com/rust-lang/mdBook/pull/1306 is merged and released
|
|
# - name: Setup mdBook
|
|
# uses: peaceiris/actions-mdbook@v1
|
|
# with:
|
|
# mdbook-version: "0.4.10"
|
|
|
|
# NOTE: Delete when the previous one is enabled
|
|
- name: Setup mdBook
|
|
run: |
|
|
cargo install mdbook --git https://github.com/Demonthos/mdBook.git --branch master
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build
|
|
run: cd docs &&
|
|
cd guide && mdbook build -d ../nightly/guide && cd .. &&
|
|
cd router && mdbook build -d ../nightly/router && cd ..
|
|
# cd reference && mdbook build -d ../nightly/reference && cd .. &&
|
|
# cd fermi && mdbook build -d ../nightly/fermi && cd ..
|
|
|
|
- name: Deploy 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4.4.2
|
|
with:
|
|
branch: gh-pages # The branch the action should deploy to.
|
|
folder: docs/nightly # The folder the action should deploy.
|
|
target-folder: docs
|
|
repository-name: dioxuslabs/docsite
|
|
clean: false
|
|
token: ${{ secrets.DEPLOY_KEY }} # let's pretend I don't need it for now
|