From 5fd502875cc150e0fc1a47fdb80102dee4c8c41a Mon Sep 17 00:00:00 2001 From: wfullmer Date: Thu, 12 Jan 2023 12:09:50 -0500 Subject: [PATCH] try to make the two doc builds two different actions --- .github/workflows/build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7f20e2b..92e6129 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,12 +25,18 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Build MFiX-Exa HTML manual + - name: Build MFiX-Exa Documentation run: make -C docs -C picvva env: DEFAULT_BRANCH: main GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} + - name: Build MFiX-Exa PIC VVA Manual + run: make -C docs/picvva + env: + DEFAULT_BRANCH: main + GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} + - name: Deploy to GitHub Pages if: success() uses: crazy-max/ghaction-github-pages@v2 -- GitLab