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 3a2488a commit 0b7af7bCopy full SHA for 0b7af7b
.github/workflows/publish-docs.yml
@@ -58,16 +58,12 @@ jobs:
58
cache-dependency-path: mkdocs-reqs.txt
59
60
- name: Ensure mkdocs is available
61
- run: |
62
- pip install -r mkdocs-reqs.txt
63
- pip freeze
+ run: make ensure-mkdocs
64
65
- name: Set mkdocs remote
66
67
- git remote rm origin
68
- git remote add origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/urfave/cli.git"
+ run: make set-mkdocs-remote
+ env:
+ MKDOCS_REMOTE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69
70
- name: Deploy via mkdocs
71
72
- which mkdocs
73
- mkdocs gh-deploy --force
+ run: make deploy-mkdocs
0 commit comments