Skip to content

Commit

Permalink
Update deploy-docs.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sacha-l authored May 16, 2024
1 parent 2a5b1ed commit eebe60e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
id: pages
uses: actions/configure-pages@v4
- name: Clean docs folder
run: cargo clean --doc
run: cd swarm_nl && cargo clean --doc
- name: Build docs
run: cargo doc --no-deps
run: cd swarm_nl && cargo doc --no-deps
- name: Add redirect
run: echo '<meta http-equiv="refresh" content="0;url=aoc/index.html">' > target/doc/index.html
run: cd swarm_nl && echo '<meta http-equiv="refresh" content="0;url=aoc/index.html">' > target/doc/index.html
- name: Remove lock file
run: rm target/doc/.lock
run: cd swarm_nl && rm target/doc/.lock
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit eebe60e

Please sign in to comment.