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