From 4bf9ac897094ec3f982c74f2527db6e0aa357857 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sun, 21 Apr 2024 22:55:55 -0600 Subject: [PATCH 1/4] hardcode timezone to workaround bug in babel --- .github/workflows/docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 54f7b64..23b2556 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,6 +24,7 @@ jobs: - name: Build run: | + export TZ=UTC cd doc doxygen From 55482dae38aaaf34c24fdd63f664852d94c88ccb Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sun, 21 Apr 2024 22:57:56 -0600 Subject: [PATCH 2/4] don't use github pages --- .github/workflows/docs.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 23b2556..96bdc9d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -34,15 +34,15 @@ jobs: mv _build_doxygen/html deploy/doxygen mv _build_sphinx/html/* deploy - - name: Setup pages - if: github.event_name != 'pull_request' - uses: actions/configure-pages@v4 + # - name: Setup pages + # if: github.event_name != 'pull_request' + # uses: actions/configure-pages@v4 - - name: Upload pages artifact - if: github.event_name != 'pull_request' - uses: actions/upload-pages-artifact@v3 - with: - path: doc/deploy + # - name: Upload pages artifact + # if: github.event_name != 'pull_request' + # uses: actions/upload-pages-artifact@v3 + # with: + # path: doc/deploy - name: Upload artifacts if: github.event_name == 'pull_request' From 1b0624572c3ee56249ca18a156cd34ff96812078 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sun, 21 Apr 2024 22:58:57 -0600 Subject: [PATCH 3/4] more ci stuff --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 96bdc9d..23e337b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -45,7 +45,7 @@ jobs: # path: doc/deploy - name: Upload artifacts - if: github.event_name == 'pull_request' + # if: github.event_name == 'pull_request' uses: actions/upload-artifact@v4 with: path: doc/deploy From 9d89b6fd8cfdc18614b5f506bb3aacbd3c5d818b Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Sun, 21 Apr 2024 23:01:17 -0600 Subject: [PATCH 4/4] ci fix --- .github/workflows/docs.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 23e337b..ff70412 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -46,17 +46,17 @@ jobs: - name: Upload artifacts # if: github.event_name == 'pull_request' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: path: doc/deploy - deploy: - runs-on: ubuntu-22.04 - needs: build - if: github.event_name != 'pull_request' - permissions: - pages: write - id-token: write - steps: - - name: Deploy to GitHub Pages - uses: actions/deploy-pages@v4 + # deploy: + # runs-on: ubuntu-22.04 + # needs: build + # if: github.event_name != 'pull_request' + # permissions: + # pages: write + # id-token: write + # steps: + # - name: Deploy to GitHub Pages + # uses: actions/deploy-pages@v4