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 b3e68e1 commit 497e5a0Copy full SHA for 497e5a0
.github/workflows/docs.yml
@@ -73,7 +73,10 @@ jobs:
73
&& git config user.email 'github-actions[bot]@users.noreply.github.com'
74
75
- name: Create Docs Cache ID
76
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
+ run: |
77
+ source ~/conda/etc/profile.d/conda.sh \
78
+ && conda activate docs \
79
+ echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
80
81
- name: Setup Docs Cache
82
uses: actions/cache@v4
@@ -85,5 +88,7 @@ jobs:
85
88
86
89
- name: Deploy Docs
87
90
run: |
- cd docs
- mkdocs gh-deploy --force
91
92
93
+ && cd docs \
94
+ && mkdocs gh-deploy --force
0 commit comments