Skip to content

Commit 917b1cf

Browse files
authored
Attempted fix for build step in build-and-deploy.yml (#15)
1 parent 9d9eff5 commit 917b1cf

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ jobs:
5353
steps:
5454
- name: Checkout repository
5555
uses: actions/checkout@v4
56+
with:
57+
fetch-depth: 0
5658

5759
- name: Set up Node.js
5860
uses: actions/setup-node@v4
@@ -78,6 +80,15 @@ jobs:
7880
run: |
7981
pip install mkdocs mkdocs-material mkdocs-material-extensions mkdocs-get-deps mkdocs-rss-plugin
8082
83+
- name: Freeze Python dependencies (for diagnostics)
84+
run: pip freeze > freeze.txt
85+
86+
- name: Upload pip freeze snapshot
87+
uses: actions/upload-artifact@v4
88+
with:
89+
name: pip-freeze-ci
90+
path: freeze.txt
91+
8192
# Strict mode disabled for mkdocs-material
8293
- name: Build MkDocs documentation
8394
run: mkdocs build

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@networkpro/blog",
3-
"version": "1.1.8",
3+
"version": "1.1.9",
44
"description": "The official blog of Network Pro Strategies (Network Pro™).",
55
"keywords": [
66
"advisory",

0 commit comments

Comments
 (0)