From 7b3f336899114af9200bc0d79a215849f61715de Mon Sep 17 00:00:00 2001 From: Brandon Sutherland Date: Mon, 6 Jan 2025 14:25:01 -0700 Subject: [PATCH] Changed auth for github actions --- .github/workflows/deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 0a06492..ecd0cb0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -12,6 +12,9 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 + with: + ref: main + token: ${{ secrets.MKDOCS_PAT }} - name: Setup Python uses: actions/setup-python@v4 @@ -24,5 +27,3 @@ jobs: - name: Build and Deploy run: mkdocs gh-deploy --force - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}