FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonchile.cl/.github/workflows/pythonchile.yml at main · python-chile/pythonchile.cl · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-chile
/
pythonchile.cl
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
21
Code
Issues
19
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonchile.cl
/
.github
/
workflows
/
pythonchile.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
72 lines (60 loc) · 1.52 KB
Breadcrumbs
pythonchile.cl
/
.github
/
workflows
/
pythonchile.yml
Copy path
File metadata and controls
72 lines (60 loc) · 1.52 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name
:
Deploy Python Chile Static Site
on
:
push
:
branches
:
-
main
workflow_dispatch
:
permissions
:
contents
:
read
pages
:
write
id-token
:
write
concurrency
:
group
:
"
pages
"
cancel-in-progress
:
true
jobs
:
build-deploy
:
runs-on
:
ubuntu-latest
steps
:
-
name
:
checkout repository
uses
:
actions/checkout@v4
-
name
:
setup python
uses
:
actions/setup-python@v4
with
:
python-version
:
"
3.11
"
-
name
:
Install system dependencies for Pillow
run
:
|
sudo apt-get update
sudo apt-get install -y \
libjpeg-dev \
zlib1g-dev \
libpng-dev \
libfreetype6-dev \
libtiff5-dev \
liblcms2-dev \
libwebp-dev \
tcl-dev \
tk-dev \
python3-tk \
libharfbuzz-dev \
libfribidi-dev \
libxcb1-dev
-
name
:
install dependencies
run
:
|
python -m pip install --upgrade pip
pip install -r requirements.txt
-
name
:
build static site
run
:
pelican ./content -s publishconf.py -o output
-
name
:
upload pages artifact
uses
:
actions/upload-pages-artifact@v3
with
:
path
:
./output
deploy
:
needs
:
build-deploy
runs-on
:
ubuntu-latest
environment
:
name
:
github-pages
url
:
${{ steps.deployment.outputs.page_url }}
steps
:
-
name
:
deploy to github pages
id
:
deployment
uses
:
actions/deploy-pages@v4
Back
|
FazBrowse Home
|
New Git URL