FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pygresql.github.io/.github/workflows/page.yml at main · PyGreSQL/pygresql.github.io · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
PyGreSQL
/
pygresql.github.io
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
pygresql.github.io
/
.github
/
workflows
/
page.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
40 lines (37 loc) · 998 Bytes
Breadcrumbs
pygresql.github.io
/
.github
/
workflows
/
page.yml
Copy path
File metadata and controls
40 lines (37 loc) · 998 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
38
39
40
name
:
Publish PyGreSQL documentation
on
:
push
:
branches
:
-
main
jobs
:
docs
:
name
:
Build documentation
runs-on
:
ubuntu-24.04
steps
:
-
name
:
Check out docs
uses
:
actions/checkout@v6
with
:
repository
:
"
PyGreSQL/PyGreSQL
"
-
name
:
Set up Python 3.14
uses
:
actions/setup-python@v6
with
:
python-version
:
3.14
-
name
:
Install dependencies
run
:
|
sudo apt install libpq-dev
python -m pip install --upgrade pip
pip install .
pip install "sphinx>=9,<10"
-
name
:
Create docs with Sphinx
run
:
|
cd docs
make html
-
name
:
Deploy docs to GitHub pages
uses
:
peaceiris/actions-gh-pages@v4
with
:
github_token
:
${{ secrets.GITHUB_TOKEN }}
publish_branch
:
gh-pages
publish_dir
:
docs/_build/html
cname
:
pygresql.org
enable_jekyll
:
false
force_orphan
:
true
Back
|
FazBrowse Home
|
New Git URL