File tree 1 file changed +17
-4
lines changed
1 file changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,23 @@ jobs:
45
45
yarn install
46
46
yarn docs:build-cf
47
47
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
51
51
with :
52
+ wranglerVersion : ' 3'
52
53
apiToken : ${{ secrets.CLOUDFLARE_API_TOKEN }}
53
54
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
+ })
You can’t perform that action at this time.
0 commit comments