From 39b4f256295e249adae20be2e06027fdcc23dd13 Mon Sep 17 00:00:00 2001 From: Andrew White Date: Sat, 30 Mar 2024 15:45:54 -0600 Subject: [PATCH] chore: workflow updates --- .github/workflows/copy-docs.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/copy-docs.yml b/.github/workflows/copy-docs.yml index 236e7202..26e2bb0a 100644 --- a/.github/workflows/copy-docs.yml +++ b/.github/workflows/copy-docs.yml @@ -26,9 +26,12 @@ jobs: run: mkdir -p website/docs/${{ steps.currentversion.outputs.tag }} && cp main/docs/* website/docs/${{ steps.currentversion.outputs.tag }} - name: Checkin Website working-directory: website + env: + GITHUB_TOKEN: ${{secrets.workflow_pat}} run: | git config user.name github-actions git config user.email github-actions@github.com git add . git commit -m "chore: docs generated" + git remote set-url "https://$GITHUB_TOKEN@github.com/Finbuckle/Website.git" git push