Skip to content

Commit

Permalink
asdasd (#9620)
Browse files Browse the repository at this point in the history
  • Loading branch information
pngwn authored Oct 9, 2024
1 parent 5d98550 commit 9af29c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/website-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 9af29c8

Please sign in to comment.