We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29843f commit 151e29fCopy full SHA for 151e29f
.github/workflows/pythonchile.yml
@@ -48,11 +48,8 @@ jobs:
48
python -m pip install --upgrade pip
49
pip install -r requirements.txt
50
51
- - name: Debug repo structure
52
- run: ls -R .
53
-
54
- name: build static site
55
- run: pelican -s publishconf.py -o output
+ run: pelican ./content -s publishconf.py -o output
56
57
- name: upload pages artifact
58
uses: actions/upload-pages-artifact@v3
publishconf.py
@@ -2,10 +2,8 @@
2
import sys
3
4
sys.path.append(os.curdir)
5
-from pelicanconf import *
6
7
-#SITEURL = "https://www.pythonchile.cl"
8
-SITEURL = "https://python-chile.github.io"
+SITEURL = "https://python-chile.github.io/pythonchile.cl"
9
RELATIVE_URLS = False
10
11
DELETE_OUTPUT_DIRECTORY = True
0 commit comments