From 132af3312780ad98f0eb998fdf7228251888db31 Mon Sep 17 00:00:00 2001 From: Manuel Salazar Date: Fri, 27 Feb 2026 12:40:27 -0700 Subject: [PATCH] fix(ci): switch to official GitHub Pages actions for deployment --- .github/workflows/deploy.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 358c8909ff..a249ca00b5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,14 +36,13 @@ jobs: with: cache: npm - name: Install dependencies - run: npx ci + run: npm ci - name: Build docusaurus artifacts run: npm run build - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 with: - token: ${{ secrets.GH_TOKEN }} - folder: build - branch: gh-pages - clean-exclude: pr-preview/ - force: false + path: build + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4