Skip to content

Commit

Permalink
More docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Jan 2, 2025
1 parent b3e68e1 commit 497e5a0
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ jobs:
&& git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Create Docs Cache ID
run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
run: |
source ~/conda/etc/profile.d/conda.sh \
&& conda activate docs \
echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- name: Setup Docs Cache
uses: actions/cache@v4
Expand All @@ -85,5 +88,7 @@ jobs:
- name: Deploy Docs
run: |
cd docs
mkdocs gh-deploy --force
source ~/conda/etc/profile.d/conda.sh \
&& conda activate docs \
&& cd docs \
&& mkdocs gh-deploy --force

0 comments on commit 497e5a0

Please sign in to comment.