Skip to content

Commit

Permalink
Fix: gh pages deployment w/ custom domain (#31)
Browse files Browse the repository at this point in the history
* Fix: Github Actions Deploy to gh pages; Create publish_mdbook.yml action

* Stop using `publish-book.yml` script

* test "publish_mdbook.yml" on fix branch

* test deployment

* remove old gh action

* simplify publish script

* Update deploy script
  • Loading branch information
diversable authored Dec 22, 2023
1 parent 73dbc49 commit 4532330
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 40 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/publish-book.yml

This file was deleted.

62 changes: 62 additions & 0 deletions .github/workflows/publish_mdbook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Deploy Leptos Book to Github Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false

jobs:

# Job: Build and Deploy to Pages
build-and-deploy:

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
env:
MDBOOK_VERSION: 0.4.36
steps:
- uses: actions/checkout@v4
- name: Install mdBook
run: |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
rustup update
cargo install --version ${MDBOOK_VERSION} mdbook
- name: Install mdbook-admonish
run: |
cargo install mdbook-admonish --vers "1.14.0" --locked
mdbook-admonish install ./
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4

- name: Build with mdBook
run: mdbook build

- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./book

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3

0 comments on commit 4532330

Please sign in to comment.