FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python/.github/workflows/deploy-documentation.yml at python313 · boostorg/python · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
boostorg
/
python
Public
Notifications
You must be signed in to change notification settings
Fork
223
Star
537
Code
Issues
173
Pull requests
34
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python
/
.github
/
workflows
/
deploy-documentation.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
37 lines (35 loc) · 1017 Bytes
Breadcrumbs
python
/
.github
/
workflows
/
deploy-documentation.yml
Copy path
File metadata and controls
37 lines (35 loc) · 1017 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name
:
deploy documentation
on
:
[push]
jobs
:
deploy
:
runs-on
:
ubuntu-24.04
steps
:
-
uses
:
actions/checkout@v5
-
name
:
setup
run
:
|
sudo apt-get update
sudo apt-get install \
libboost-tools-dev \
python3 \
python3-numpy \
python3-sphinx \
xsltproc \
docbook-xsl
sudo python3 -m pip install --upgrade pip
sudo python3 -m pip install faber
-
name
:
build
run
:
|
sed -e "s/\$PYTHON/python3/g" .ci/faber > ~/.faber
faber --builddir=build doc.html
if [ "${GITHUB_REF##*/}" == master ]; then
echo "destination_dir=doc/html" >> $GITHUB_ENV
else
echo "destination_dir=doc/develop/html" >> $GITHUB_ENV
fi
-
name
:
deploy
uses
:
peaceiris/actions-gh-pages@v4
with
:
github_token
:
${{ secrets.GITHUB_TOKEN }}
publish_dir
:
build/doc/html
destination_dir
:
${{ env.destination_dir }}
keep_files
:
true
Back
|
FazBrowse Home
|
New Git URL