From 28c06dc5f2c45359b3bf8c43cc13953e59d1695c Mon Sep 17 00:00:00 2001 From: Nikola Vukobrat Date: Thu, 15 Aug 2024 13:40:41 +0000 Subject: [PATCH] wip --- .github/workflows/pages.yml | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 947e053d4..bf5e60822 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -34,11 +34,18 @@ jobs: with: fetch-depth: 0 # Fetch all history and tags + - 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: Install mdBook shell: bash run: | - # curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh - # rustup update + source env/activate apt install cargo -y cargo install --version ${MDBOOK_VERSION} mdbook # export PATH="/localdev/nvukobrat/.cargo/bin:$PATH" @@ -47,14 +54,6 @@ jobs: 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: |