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 0b2c140 commit e976b02Copy full SHA for e976b02
.github/workflows/ci.yml
@@ -1,5 +1,11 @@
1
name: build
2
3
+concurrency: preview-${{ github.ref }}
4
+
5
+permissions:
6
+ contents: write
7
+ pull-requests: write
8
9
on:
10
pull_request:
11
@@ -19,5 +25,14 @@ jobs:
19
25
- name: Install uv
20
26
uses: astral-sh/setup-uv@v6
21
27
22
- - name: Validate
28
+ - name: Build HTML Docs
23
29
run: VERSION=${{ github.event.repository.default_branch }} JOBS=4 MODE=html make all
30
31
+ - name: Deploy PR Doc Preview
32
+ uses: rossjrw/pr-preview-action@v1
33
+ with:
34
+ source-dir: ../cpython/Doc/build/html
35
+ token: ${{ secrets.GITHUB_TOKEN }}
36
+ preview-branch: gh-pages
37
+ umbrella-dir: pr-preview
38
+ action: auto
.github/workflows/deploy-gh-page.yml
0 commit comments