We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 516dd3e commit 5eb2685Copy full SHA for 5eb2685
.github/workflows/publish-release.yaml
@@ -42,6 +42,21 @@ jobs:
42
git tag ${{ steps.resolve-release-version.outputs.version }}
43
git push origin ${{ steps.resolve-release-version.outputs.version }}
44
45
+ - name: Deploy documentation
46
+ id: deploy
47
+ uses: cloudflare/wrangler-action@v3
48
+ with:
49
+ packageManager: pnpm
50
+ workingDirectory: 'docs/tutorialkit.dev'
51
+ apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
52
+ accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
53
+ command: pages deploy
54
+
55
+ - name: Deployment URL
56
+ env:
57
+ DEPLOYMENT_URL: ${{ steps.deploy.outputs.deployment-url }}
58
+ run: echo $DEPLOYMENT_URL
59
60
prepare_cli_release:
61
name: Prepare Release for CLI
62
needs: [publish_release]
0 commit comments