From 766399a203d5d429b9781e1f5823708215101c3f Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 23 Mar 2026 15:53:26 +0100 Subject: [PATCH 1/6] attempt to fix deployment --- .github/workflows/docs_deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs_deploy.yml b/.github/workflows/docs_deploy.yml index 3ea667e234..753598cc15 100644 --- a/.github/workflows/docs_deploy.yml +++ b/.github/workflows/docs_deploy.yml @@ -19,6 +19,9 @@ concurrency: group: pages cancel-in-progress: false +permissions: + contents: write + jobs: # Build job build: @@ -46,6 +49,6 @@ jobs: - name: Deploy to GitHub Pages uses: peaceiris/actions-gh-pages@v4 with: - github_token: ${{ secrets.PAT_DOCS }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/.vitepress/dist cname: ev.xyz From 73ed9272b7547701d24f0bd8726246871e4aeddf Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 23 Mar 2026 15:56:49 +0100 Subject: [PATCH 2/6] change docs to test --- docs/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/README.md b/docs/README.md index 2ec203d97e..2ad53f7b35 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,6 +6,9 @@ Here you'll find comprehensive guides, and reference materials to help you make ## Building the site + + + To get started, clone the repository and run the following: ```bash From 2e6b4caad8ca215ff2b2cf700f5d222d839f5791 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 23 Mar 2026 16:15:47 +0100 Subject: [PATCH 3/6] test --- .github/workflows/docs_preview.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/docs_preview.yml b/.github/workflows/docs_preview.yml index aa25c99bf1..6eac09d2db 100644 --- a/.github/workflows/docs_preview.yml +++ b/.github/workflows/docs_preview.yml @@ -38,6 +38,9 @@ jobs: run: BASE='/docs-preview/pr-${{ github.event.number }}/' yarn build working-directory: docs + - name: Clear default git credentials + run: git config --global --unset http.https://github.com/.extraheader || true + - name: Deploy preview uses: rossjrw/pr-preview-action@v1 with: From 013db2496dc74c8b9e0720a962b7afe9804a9400 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 23 Mar 2026 16:20:52 +0100 Subject: [PATCH 4/6] test --- .github/workflows/docs_preview.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docs_preview.yml b/.github/workflows/docs_preview.yml index 6eac09d2db..51da59ec0b 100644 --- a/.github/workflows/docs_preview.yml +++ b/.github/workflows/docs_preview.yml @@ -38,8 +38,10 @@ jobs: run: BASE='/docs-preview/pr-${{ github.event.number }}/' yarn build working-directory: docs - - name: Clear default git credentials - run: git config --global --unset http.https://github.com/.extraheader || true + - name: Check deploy token is set + env: + HAS_TOKEN: ${{ secrets.PREVIEW_DEPLOY != '' }} + run: echo "PREVIEW_DEPLOY is set=$HAS_TOKEN" - name: Deploy preview uses: rossjrw/pr-preview-action@v1 From b27fd438cdc93e5e4b745d1c35a66b5bc9cf9dc6 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 23 Mar 2026 16:28:48 +0100 Subject: [PATCH 5/6] test --- .github/workflows/docs_preview.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs_preview.yml b/.github/workflows/docs_preview.yml index 51da59ec0b..e4963130a9 100644 --- a/.github/workflows/docs_preview.yml +++ b/.github/workflows/docs_preview.yml @@ -22,6 +22,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v6.0.2 + with: + persist-credentials: false - name: Setup Node uses: actions/setup-node@v6 @@ -38,11 +40,6 @@ jobs: run: BASE='/docs-preview/pr-${{ github.event.number }}/' yarn build working-directory: docs - - name: Check deploy token is set - env: - HAS_TOKEN: ${{ secrets.PREVIEW_DEPLOY != '' }} - run: echo "PREVIEW_DEPLOY is set=$HAS_TOKEN" - - name: Deploy preview uses: rossjrw/pr-preview-action@v1 with: From 39927c8f46fcc17cf4d1492c0c4fb66d1c0420f9 Mon Sep 17 00:00:00 2001 From: tac0turtle Date: Mon, 23 Mar 2026 17:27:49 +0100 Subject: [PATCH 6/6] remove docs check --- docs/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/README.md b/docs/README.md index 2ad53f7b35..2ec203d97e 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,9 +6,6 @@ Here you'll find comprehensive guides, and reference materials to help you make ## Building the site - - - To get started, clone the repository and run the following: ```bash