Skip to content

Commit 7bbf782

Browse files
Merge branch 'master' into dependabot/github_actions/actions/setup-python-6
2 parents 3f63df7 + 17c9884 commit 7bbf782

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Setup Pages
3535
uses: actions/configure-pages@v5
3636
- name: Upload artifact
37-
uses: actions/upload-pages-artifact@v3
37+
uses: actions/upload-pages-artifact@v4
3838
with:
3939
path: 'output/'
4040

@@ -46,7 +46,7 @@ jobs:
4646
pull-requests: write # For comments in PRs
4747
steps:
4848
- name: Download site artifact
49-
uses: actions/download-artifact@v4
49+
uses: actions/download-artifact@v7
5050
with:
5151
# The name of artifacts created by `actions/upload-pages-artifact` is always "github-pages"
5252
name: github-pages
File renamed without changes.

pelicanconf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def sponsors(preprocessor: Preprocessor, tag: str, markup: str) -> str:
7373
INDEX_SAVE_AS = "news/index.html"
7474
# Pages we use prefix in order to split the menu between projects and general links.
7575
# News we set the default tag to the subdirectory. This can be overriden by Tags: header if multiple tags are wanted.
76-
PATH_METADATA = r"((pages/(?P<prefix>([^/]+/)|))|(news/(?P<tags>[^/]+)/(?P<date>\d{4}-\d{2}-\d{2})_))(?P<slug>.*)\.md"
76+
PATH_METADATA = r"((pages/(?P<prefix>([^/]+/)|))|(news/(?P<tags>[^/]+)/(?P<date>\d{4}-\d{2}-\d{2})_))(?P<slug>[^_]+)\.md"
7777
PAGE_URL = "{prefix}{slug}/"
7878
PAGE_SAVE_AS = "{prefix}{slug}/index.html"
7979
# We use tags as categories, so we can occasionally put something under multiple categories.

0 commit comments

Comments
 (0)