Skip to content

Commit

Permalink
fix(build): resolve page build issue
Browse files Browse the repository at this point in the history
- 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 <xa@mes3.dev>
  • Loading branch information
xames3 committed Sep 19, 2024
1 parent a7a9105 commit 5b29e62
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/publish-dev-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/publish-feature-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/publish-main-pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5b29e62

Please sign in to comment.