From 220c318e764d4385897cafd304ca9a742c7ff018 Mon Sep 17 00:00:00 2001 From: Tristan Morgan Date: Fri, 6 Sep 2024 13:35:29 +1000 Subject: [PATCH 1/2] update and try fix GH Pages publish action. --- .github/workflows/github-pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 6e5085a54..961b0b5c2 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -17,8 +17,8 @@ jobs: export PATH=${PATH}:${HOME}/bin make github-pages - name: deploy - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: - github_token: ${{ secrets.GH_ACTIONS_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/public cname: fabiolb.net From 2f757f6f7fc81b28fb17f9329ca03fad012a226a Mon Sep 17 00:00:00 2001 From: Tristan Morgan Date: Mon, 9 Sep 2024 13:42:50 +1000 Subject: [PATCH 2/2] pinned checkout action version. --- .github/workflows/github-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 961b0b5c2..1259b003f 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -9,7 +9,7 @@ jobs: build-deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@master + - uses: actions/checkout@v4 with: submodules: true - name: build