Skip to content

Commit

Permalink
Fix Deploy Root Folder condition
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-fowler committed Jan 17, 2024
1 parent f886455 commit f2a1169
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
run: |
./scripts/build-docc.sh
./scripts/build-sitemap.sh
# - name: Deploy Root Folder 🚀
# if: ${{ env.DEPLOY_ROOT_FOLDER }} == true
# uses: JamesIves/github-pages-deploy-action@v4
# with:
# folder: docs/hummingbird-docs/
# clean-exclude: "*.0"
# target-folder: docs/
- name: Deploy Root Folder 🚀
if: ${{ env.DEPLOY_ROOT_FOLDER == 'true' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/hummingbird-docs/
clean-exclude: "*.0"
target-folder: docs/
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
Expand Down

0 comments on commit f2a1169

Please sign in to comment.