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