From ba7e78616ba3c43174a03f281a5c0da25de8cb81 Mon Sep 17 00:00:00 2001 From: Macy Libed Date: Wed, 29 Oct 2025 11:31:28 +0800 Subject: [PATCH 1/4] update branch Signed-off-by: Macy Libed --- .github/workflows/doc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 788937c5..5749efe0 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -73,7 +73,7 @@ jobs: DeployMainDoc: runs-on: ubuntu-latest needs: [CheckDocs, Doc] - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/documentation_fix' + if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs_update' steps: - uses: actions/checkout@v2 From 1a02b8ad587a1bf7968d06e38914cad599d490af Mon Sep 17 00:00:00 2001 From: Macy Libed Date: Wed, 29 Oct 2025 11:57:44 +0800 Subject: [PATCH 2/4] updated branch Signed-off-by: Macy Libed --- .github/workflows/doc.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 5749efe0..3b01fa8e 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -73,7 +73,7 @@ jobs: DeployMainDoc: runs-on: ubuntu-latest needs: [CheckDocs, Doc] - if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs_update' + if: github.ref == 'refs/heads/refactor-2' || github.ref == 'refs/heads/docs_update' steps: - uses: actions/checkout@v2 @@ -102,13 +102,13 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./doc/build/html - destination_dir: main + destination_dir: gh-pages DeployDevelopmentDoc: runs-on: ubuntu-latest needs: [CheckDocs, Doc] # Only run on pull requests to main and non-forks - if: github.event_name == 'pull_request' && github.base_ref == 'main' && ! github.event.pull_request.head.repo.fork + if: github.event_name == 'pull_request' && github.base_ref == 'refactor-2' && ! github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 From f0eae9b679366481af1c6abb476307a4eec7d1b4 Mon Sep 17 00:00:00 2001 From: Macy Libed Date: Wed, 29 Oct 2025 14:16:22 +0800 Subject: [PATCH 3/4] removed subfolder Signed-off-by: Macy Libed --- .github/workflows/doc.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 3b01fa8e..f190d48e 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -102,7 +102,6 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./doc/build/html - destination_dir: gh-pages DeployDevelopmentDoc: runs-on: ubuntu-latest From 26876d2b7ae0717a2844448bd2ea7544ec5a4966 Mon Sep 17 00:00:00 2001 From: Macy Libed Date: Wed, 29 Oct 2025 15:33:50 +0800 Subject: [PATCH 4/4] removed testing branch Signed-off-by: Macy Libed --- .github/workflows/doc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index f190d48e..05ddfe9b 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -73,7 +73,7 @@ jobs: DeployMainDoc: runs-on: ubuntu-latest needs: [CheckDocs, Doc] - if: github.ref == 'refs/heads/refactor-2' || github.ref == 'refs/heads/docs_update' + if: github.ref == 'refs/heads/refactor-2' steps: - uses: actions/checkout@v2 @@ -106,7 +106,7 @@ jobs: DeployDevelopmentDoc: runs-on: ubuntu-latest needs: [CheckDocs, Doc] - # Only run on pull requests to main and non-forks + # Only run on pull requests to refactor-2 and non-forks if: github.event_name == 'pull_request' && github.base_ref == 'refactor-2' && ! github.event.pull_request.head.repo.fork steps: - uses: actions/checkout@v2