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: Docs - Build & Deploy | |
on: | |
push: | |
# branches: ["main"] | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
packages: read | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
build: | |
# runs-on: ubuntu-latest | |
runs-on: self-hosted | |
container: | |
image: ghcr.io/${{ github.repository }}/tt-forge-ubuntu-22-04:latest | |
options: --user root | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Fetch all history and tags | |
- name: Install mdBook | |
run: | | |
curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh | |
rustup update | |
cargo install --version ${MDBOOK_VERSION} mdbook | |
# export PATH="/localdev/nvukobrat/.cargo/bin:$PATH" | |
- name: Setup Pages | |
id: pages | |
uses: actions/configure-pages@v5 | |
- name: Build TT-Forge | |
shell: bash | |
run: | | |
source env/activate | |
cmake -G Ninja -B build . | |
cmake --build build | |
# cmake -B build -S ${{ github.workspace }} | |
- name: Build Docs | |
shell: bash | |
run: | | |
cmake --build build -- docs | |
# cmake --build build -- doxygen | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./build/docs/book | |
# Deployment job | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |