Skip to content

Commit 50f3e25

Browse files
committed
ci: use cloudflare/pages-action instead and add a step to comment URL
1 parent 56a16bb commit 50f3e25

File tree

1 file changed

+17
-4
lines changed

1 file changed

+17
-4
lines changed

.github/workflows/build-deploy-doc.yml

+17-4
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,23 @@ jobs:
4545
yarn install
4646
yarn docs:build-cf
4747
48-
# Based on https://github.com/cloudflare/wrangler-action?tab=readme-ov-file#deploy-your-pages-site-production--preview
49-
- name: Deploy to Cloudflare Pages
50-
uses: cloudflare/wrangler-action@v3
48+
- name: Publish to Cloudflare Pages
49+
id: publish-to-cloudflare-pages
50+
uses: cloudflare/pages-action@v1
5151
with:
52+
wranglerVersion: '3'
5253
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
5354
accountId: 0c4635effffcd7f36d1b9f0425a4367a
54-
command: pages deploy --project-name=documentation dist/
55+
projectName: documentation
56+
directory: dist/
57+
58+
- name: Comment with preview URL
59+
uses: actions/github-script@v7
60+
with:
61+
script: |
62+
github.rest.issues.createComment({
63+
issue_number: context.issue.number,
64+
owner: context.repo.owner,
65+
repo: context.repo.repo,
66+
body:${{ steps.publish-to-cloudflare-pages.outputs.url }}
67+
})

0 commit comments

Comments
 (0)