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 2115ff7 commit 6ecb483Copy full SHA for 6ecb483
.github/workflows/ci.yml
@@ -24,6 +24,7 @@ jobs:
24
- os: ubuntu-latest
25
rubyVersion: "3.4"
26
checkTarget: true
27
+ docsTarget: true
28
runs-on: ${{ matrix.os }}
29
steps:
30
- name: Checkout repository
@@ -88,3 +89,11 @@ jobs:
88
89
TEMPORAL_CLOUD_OPS_TEST_API_KEY: ${{ secrets.TEMPORAL_CLIENT_CLOUD_API_KEY }}
90
TEMPORAL_CLOUD_OPS_TEST_API_VERSION: 2024-05-13-00
91
run: bundle exec rake TESTOPTS="--verbose"
92
+
93
+ - name: Deploy docs
94
+ # Only deploy on main merge, not in PRs
95
+ # if: ${{ github.ref == 'refs/heads/main' && matrix.docsTarget }}
96
+ env:
97
+ VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
98
+ VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
99
+ run: npx vercel deploy temporalio/doc --token ${{ secrets.VERCEL_TOKEN }} --prod --yes
0 commit comments