diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 947e053d..bf5e6082 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: |