From 5b29e6225267efd916a19514d3f17d90891ee198 Mon Sep 17 00:00:00 2001 From: Akshay Mestry Date: Thu, 19 Sep 2024 16:57:20 -0500 Subject: [PATCH] fix(build): resolve page build issue - this issue was particularly affecting the page building action due to a typo left over from previous merge conflict. this commit resolves that issue. Signed-off-by: Akshay Mestry --- .github/workflows/publish-dev-pages.yaml | 6 +----- .github/workflows/publish-feature-pages.yaml | 6 +----- .github/workflows/publish-main-pages.yaml | 6 +----- 3 files changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/publish-dev-pages.yaml b/.github/workflows/publish-dev-pages.yaml index c6418a4..67648b4 100755 --- a/.github/workflows/publish-dev-pages.yaml +++ b/.github/workflows/publish-dev-pages.yaml @@ -70,12 +70,8 @@ jobs: # -a: Write all output files (default only writes new and changed files). # -q: Run in quiet mode, with minimal output. run: | - echo "Building Sphinx documentation..." -<<<<<<< HEAD + echo "Building TOPST SCHOOL bilingual documentation..." sphinx-build -Eaq --builder html --define language=en ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }} && sphinx-build -Eaq --builder html --define language=es ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/es -======= - sphinx-build -Eaq --builder html --define language=en ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/en && sphinx-build -Eaq --builder html --define language=es ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/es ->>>>>>> afff13ce66fc335603ebcd8d36bc366ee3fb4548 # Step 5: Deploy the built HTML files to the specified branch (GitHub Pages). - name: DEV | Deploy to GitHub Pages diff --git a/.github/workflows/publish-feature-pages.yaml b/.github/workflows/publish-feature-pages.yaml index 448eb2b..1d24292 100755 --- a/.github/workflows/publish-feature-pages.yaml +++ b/.github/workflows/publish-feature-pages.yaml @@ -73,12 +73,8 @@ jobs: # -a: Write all output files (default only writes new and changed files). # -q: Run in quiet mode, with minimal output. run: | - echo "Building Sphinx documentation..." -<<<<<<< HEAD + echo "Building TOPST SCHOOL bilingual documentation..." sphinx-build -Eaq --builder html --define language=en ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }} && sphinx-build -Eaq --builder html --define language=es ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/es -======= - sphinx-build -Eaq --builder html --define language=en ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/en && sphinx-build -Eaq --builder html --define language=es ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/es ->>>>>>> afff13ce66fc335603ebcd8d36bc366ee3fb4548 # Step 5: Deploy the built HTML files to the specified branch (GitHub Pages). - name: FEAT | Deploy to GitHub Pages diff --git a/.github/workflows/publish-main-pages.yaml b/.github/workflows/publish-main-pages.yaml index 8e698bf..e468370 100755 --- a/.github/workflows/publish-main-pages.yaml +++ b/.github/workflows/publish-main-pages.yaml @@ -70,12 +70,8 @@ jobs: # -a: Write all output files (default only writes new and changed files). # -q: Run in quiet mode, with minimal output. run: | - echo "Building Sphinx documentation..." -<<<<<<< HEAD + echo "Building TOPST SCHOOL bilingual documentation..." sphinx-build -Eaq --builder html --define language=en ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }} && sphinx-build -Eaq --builder html --define language=es ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/es -======= - sphinx-build -Eaq --builder html --define language=en ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/en && sphinx-build -Eaq --builder html --define language=es ${{ env.SOURCE_DIR }} ${{ env.OUTPUT_DIR }}/es ->>>>>>> afff13ce66fc335603ebcd8d36bc366ee3fb4548 # Step 5: Deploy the built HTML files to the specified branch (GitHub Pages). - name: MAIN | Deploy to GitHub Pages