From 9af29c86961d7f7eb2775df640b8ca9b3809dc22 Mon Sep 17 00:00:00 2001 From: pngwn Date: Wed, 9 Oct 2024 19:37:51 +0100 Subject: [PATCH] asdasd (#9620) --- .github/workflows/website-build.yml | 2 +- .github/workflows/website-deploy.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/website-build.yml b/.github/workflows/website-build.yml index d8973f065b..d2d499b67a 100644 --- a/.github/workflows/website-build.yml +++ b/.github/workflows/website-build.yml @@ -69,5 +69,5 @@ jobs: uses: actions/upload-artifact@v4 with: name: website - path: js/_website/.vercel + path: js/_website/build include-hidden-files: true diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index 534ac21cff..e4a3694737 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -58,7 +58,7 @@ jobs: uses: actions/download-artifact@v4 with: name: website - path: js/_website/.vercel + path: js/_website/build run-id: ${{ github.event.workflow_run.id }} github-token: ${{ secrets.GITHUB_TOKEN }} - name: list files @@ -71,7 +71,7 @@ jobs: with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - command: pages deploy js/_website/.vercel/output/static --project-name=gradio-website --branch=${{ needs.changes.outputs.source_branch }} + command: pages deploy js/_website/build --project-name=gradio-website --branch=${{ needs.changes.outputs.source_branch }} # production - name: Deploy Production Website to Cloudflare Pages @@ -81,7 +81,7 @@ jobs: with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} - command: pages deploy js/_website/.vercel/output/static --project-name=gradio-website --branch=main + command: pages deploy js/_website/build --project-name=gradio-website --branch=main comment-deploy-success: uses: "./.github/workflows/comment-queue.yml"