Skip to content

Commit 5a47684

Browse files
ran-isenbergRan Isenberg
andauthored
fix: publish docs fails on main (#724)
--------- Co-authored-by: Ran Isenberg <[email protected]>
1 parent c736ba3 commit 5a47684

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ updates:
33
- package-ecosystem: "github-actions"
44
directory: "/"
55
schedule:
6-
interval: "weekly"
6+
interval: "monthly"
77
commit-message:
88
prefix: chore
99
include: scope
1010

1111
- package-ecosystem: "pip"
1212
directory: "/"
1313
schedule:
14-
interval: "weekly"
14+
interval: "monthly"
1515
target-branch: "main"
1616
commit-message:
1717
prefix: chore

.github/workflows/serverless-service.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ jobs:
121121
with:
122122
python-version: ${{ env.PYTHON_VERSION }}
123123
- name: Install dependencies
124-
run: make dev
124+
run: |
125+
pip install --upgrade pip poetry
126+
make deps
127+
pip install -r dev_requirements.txt
125128
- name: Generate docs
126129
run: |
127130
mkdocs gh-deploy --force

0 commit comments

Comments
 (0)