Skip to content

Commit 79050ad

Browse files
committed
fix: pipeline concurrency & url
1 parent 8f37829 commit 79050ad

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

.github/workflows/pythonchile.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
1-
name: Deploy Blog Python Chile
1+
name: Deploy Python Chile Static Site
22

33
on:
4-
push:
5-
branches:
6-
- main
4+
workflow_dispatch:
75

86
permissions:
9-
contents: write
7+
contents: read
108
pages: write
119
id-token: write
1210

11+
concurrency:
12+
group: "pages"
13+
cancel-in-progress: true
14+
1315
jobs:
1416
build-deploy:
1517
runs-on: ubuntu-latest
1618

1719
steps:
1820
- name: checkout repository
19-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2022

2123
- name: setup python
2224
uses: actions/setup-python@v4

publishconf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from pelicanconf import *
66

77
#SITEURL = "https://www.pythonchile.cl"
8-
SITEURL = "https://pythonchile.cl.github.io"
8+
SITEURL = "https://python-chile.github.io/pythonchile.cl/"
99
RELATIVE_URLS = False
1010

1111
FEED_ALL_ATOM = "feeds/all.atom.xml"

0 commit comments

Comments
 (0)