Skip to content

Commit

Permalink
Fix: publish preview pages as "pr-NNN" instead of "pull-NNN" (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrueBrain authored Jan 6, 2024
1 parent bb63b98 commit 0cb10a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ jobs:
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ vars.CLOUDFLARE_PROJECT_NAME }}
directory: _site
branch: ${{ github.event_name == 'push' && github.ref_name || format('pull/{0}', github.event.pull_request.number) }}
branch: ${{ github.event_name == 'push' && github.ref_name || format('pr/{0}', github.event.pull_request.number) }}

0 comments on commit 0cb10a9

Please sign in to comment.