Skip to content

+ feature control

+ feature control #44

Workflow file for this run

name: Docs
on:
push:
branches: ["*"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: 'myrrhlab/vaultix-mdbook-custom'
path: './theme'
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install mdBook
run: |
cargo install mdbook --no-default-features --features search --vers "^0.4" --locked
- name: Build mdBook
run: |
mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './book'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
build:
if: github.ref != 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
repository: 'myrrhlab/vaultix-mdbook-custom'
path: './theme'
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install mdBook
run: |
cargo install mdbook --no-default-features --features search --vers "^0.4" --locked
- name: Build mdBook
run: |
mdbook build