Skip to content

Commit

Permalink
ci: Fix Cloudflare Pages deployment
Browse files Browse the repository at this point in the history
The project name variable was in repository variables, not in environment variables
  • Loading branch information
Ushie committed Apr 28, 2024
1 parent abdf24f commit 6dc7ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ env.CLOUDFLARE_PROJECT_NAME }}
projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }}
directory: public
id: publish

Expand Down

0 comments on commit 6dc7ff2

Please sign in to comment.