mirror of
https://github.com/leptos-rs/leptos.git
synced 2025-12-27 09:54:41 -05:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
name: Deploy book
|
|
on:
|
|
push:
|
|
paths: ["docs/book/**"]
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write # To push a branch
|
|
pull-requests: write # To create a PR from that branch
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install mdbook
|
|
run: |
|
|
mkdir mdbook
|
|
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.27/mdbook-v0.4.27-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=./mdbook
|
|
echo `pwd`/mdbook >> $GITHUB_PATH
|
|
- name: Deploy GitHub Pages
|
|
run: |
|
|
cd docs/book
|
|
mdbook build
|
|
git worktree add gh-pages
|
|
git config user.name "Deploy book from CI"
|
|
git config user.email ""
|
|
cd gh-pages
|
|
# Delete the ref to avoid keeping history.
|
|
git update-ref -d refs/heads/gh-pages
|
|
rm -rf *
|
|
mv ../book/* .
|
|
git add .
|
|
git commit -m "Deploy book $GITHUB_SHA to gh-pages"
|
|
git push --force --set-upstream origin gh-pages
|