From 815f80e8d40224acd18cb789c89a040313ae3d13 Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Mon, 12 Jan 2026 10:51:42 -0800 Subject: [PATCH] Temporarily enable deployment from feature branch --- .github/workflows/docs.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 6e591f92..97e2481c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,7 +2,8 @@ name: Documentation on: push: - branches: [main] + # TODO: Remove feat/documentation-site before merging + branches: [main, feat/documentation-site] paths: - 'docs/**' - 'README.md' @@ -92,7 +93,8 @@ jobs: path: ./site deploy: - if: github.ref == 'refs/heads/main' && github.event_name != 'pull_request' + # TODO: Change back to main only before merging + if: (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/feat/documentation-site') && github.event_name != 'pull_request' environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }}