Skip to content

Commit cf7b5b0

Browse files
authored
Updated publish.yml workflow to use same method as build-and-publish … (#17)
Updated publish.yml workflow to use same method as build-and-publish for dependencies.
1 parent 9e33ed5 commit cf7b5b0

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ jobs:
3030
steps:
3131
- name: Checkout repository
3232
uses: actions/checkout@v4
33+
with:
34+
fetch-depth: 0
3335

3436
- name: Set up Node.js
3537
uses: actions/setup-node@v4
@@ -48,9 +50,8 @@ jobs:
4850
with:
4951
python-version: '3.13'
5052

51-
- name: Install MkDocs and plugins
52-
run: |
53-
pip install mkdocs mkdocs-material mkdocs-material-extensions mkdocs-get-deps mkdocs-rss-plugin
53+
- name: Install Python dependencies
54+
run: pip install -r requirements.txt
5455

5556
# Strict mode disabled for mkdocs-material
5657
- name: Build MkDocs documentation

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.10",
3+
"version": "1.2.0",
44
"description": "The official blog of Network Pro Strategies (Network Pro™).",
55
"keywords": [
66
"advisory",

0 commit comments

Comments
 (0)