From a4de2de46ec65e8439eff6a57f77344ffab5d056 Mon Sep 17 00:00:00 2001 From: James Briggs <35938317+jamescalam@users.noreply.github.com> Date: Fri, 14 Feb 2025 18:20:22 +0400 Subject: [PATCH] fix: tweak auth --- .github/workflows/docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 6b7c6397..4eb5aa78 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -97,8 +97,8 @@ jobs: run: | git config --local user.email "admin@aurelio.ai" git config --local user.name "aurelio-bot" - git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/aurelio-labs/docs.git git add . - git diff --quiet && git diff --staged --quiet || (git commit -m "chore: update semantic router docs" && git push) - env: - GITHUB_TOKEN: ${{ secrets.PAT }} + if ! git diff --quiet || ! git diff --staged --quiet; then + git commit -m "chore: update semantic router docs" + git push "https://${{ secrets.PAT }}@github.com/aurelio-labs/docs.git" HEAD:main + fi -- GitLab