From 6cb918ab094db3cc537e592300342a7a242c48eb Mon Sep 17 00:00:00 2001 From: IkiWiki Date: Sun, 25 Aug 2024 20:13:03 -0400 Subject: [PATCH] forgejo-ci: feed token into checkout --- .forgejo/workflows/pages.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/pages.yaml b/.forgejo/workflows/pages.yaml index 9cdd04a..1f82cf6 100644 --- a/.forgejo/workflows/pages.yaml +++ b/.forgejo/workflows/pages.yaml @@ -5,9 +5,6 @@ jobs: runs-on: x86_64 container: image: alpine:latest - env: - GIT_USER: ayakael - GIT_PASS: ${{ secrets.PAGES_TOKEN }} steps: - name: Environment setup run: | @@ -15,13 +12,15 @@ jobs: - name: Repo pull uses: actions/checkout@v4 with: - fetch-depth: 500 + fetch-depth: 1 + token: ${{ secrets.PAGES_TOKEN }} - name: Public repo pull uses: actions/checkout@v4 with: fetch-depth: 0 ref: public path: public + token: ${{ secrets.PAGES_TOKEN }} - name: Render website run: ikiwiki --setup ikiwiki.setup - name: Website upload @@ -31,7 +30,6 @@ jobs: # Note: the following account information will not work on GHES git config user.name "forgejo-actions[bot]" git config user.email "dev@ayakael.net" - git config credential.helper "!f() { echo \"username=${GIT_USER}\\npassword=${GIT_PASS}\"; }; f" git add . git commit -m "Update" git push