We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8583728 commit 0a77cd9Copy full SHA for 0a77cd9
.github/workflows/ci-cd.yml
@@ -196,4 +196,8 @@ jobs:
196
run: poetry run twine upload --skip-existing --verbose 'dist/*'
197
198
- name: Upload new docs
199
- run: ./bin/task docs:deploy
+ # We run a git pull first to ensure the runner has the latest pages
200
+ # branch. It did fail because of it in the past.
201
+ run: |
202
+ git pull origin gh-pages
203
+ ./bin/task docs:deploy
0 commit comments