Skip to content

Commit 151e29f

Browse files
committed
fix: content path
1 parent f29843f commit 151e29f

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/pythonchile.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,8 @@ jobs:
4848
python -m pip install --upgrade pip
4949
pip install -r requirements.txt
5050
51-
- name: Debug repo structure
52-
run: ls -R .
53-
5451
- name: build static site
55-
run: pelican -s publishconf.py -o output
52+
run: pelican ./content -s publishconf.py -o output
5653

5754
- name: upload pages artifact
5855
uses: actions/upload-pages-artifact@v3

publishconf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@
22
import sys
33

44
sys.path.append(os.curdir)
5-
from pelicanconf import *
65

7-
#SITEURL = "https://www.pythonchile.cl"
8-
SITEURL = "https://python-chile.github.io"
6+
SITEURL = "https://python-chile.github.io/pythonchile.cl"
97
RELATIVE_URLS = False
108

119
DELETE_OUTPUT_DIRECTORY = True

0 commit comments

Comments
 (0)