From 5637475ea259edeccc6c1df8d8316a2dc424adc6 Mon Sep 17 00:00:00 2001 From: Tristan Morgan Date: Tue, 10 Sep 2024 08:16:01 +1000 Subject: [PATCH] Update and try fix GH Pages publish action. (#953) * update and try fix GH Pages publish action. * pinned checkout action version. --- .github/workflows/github-pages.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 6e5085a54..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 @@ -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