Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork214
feat(script): run powrap in sync workflow (#1039)#593
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
name:deploy-gh-page | |
on: | |
push: | |
branches: | |
-"3.13" | |
jobs: | |
cd: | |
runs-on:ubuntu-latest | |
steps: | |
-uses:actions/checkout@v4 | |
-name:Install Dependencies | |
run:sudo apt-get install gettext | |
-name:Install uv | |
uses:astral-sh/setup-uv@v6 | |
-name:Build | |
run:JOBS=4 MODE=html make all | |
-name:Deploy to gh page | |
uses:JamesIves/github-pages-deploy-action@v4.7.3 | |
with: | |
GITHUB_TOKEN:${{ secrets.GITHUB_TOKEN }} | |
BRANCH:gh-pages | |
FOLDER:../cpython/Doc/build/html | |
CLEAN:true |