Thanks to visit codestin.com Credit goes to github.com
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 a1aaf1f commit 3f47875Copy full SHA for 3f47875
1 file changed
.github/workflows/ci.yml
@@ -28,11 +28,17 @@ jobs:
28
- name: Build HTML Docs
29
run: VERSION=${{ github.event.repository.default_branch }} JOBS=4 MODE=html make all
30
31
+ - uses: actions/create-github-app-token@v2
32
+ id: app-token
33
+ with:
34
+ app-id: ${{ secrets.APP_ID }}
35
+ private-key: ${{ secrets.APP_PRIVATE_KEY }}
36
+
37
- name: Deploy PR Doc Preview
38
uses: rossjrw/pr-preview-action@v1
39
with:
40
source-dir: ../cpython/Doc/build/html
- token: ${{ secrets.GITHUB_TOKEN }}
41
+ token: ${{ steps.app-token.outputs.token }}
42
preview-branch: gh-pages
43
umbrella-dir: pr-preview
44
action: auto
0 commit comments