Skip to content

Commit

Permalink
Update the master CI workflow (#881)
Browse files Browse the repository at this point in the history
This should fix the master build, since it seems that we are caching what we shouldn't.
  • Loading branch information
Razican authored Oct 16, 2020
1 parent 0c6bcac commit dc1628a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
command: doc
args: -v --document-private-items
- run: echo "<meta http-equiv=refresh content=0;url=boa/index.html>" > target/doc/index.html
- run: mkdir target/doc_upload && mv target/doc target/doc_upload/doc
- run: |
if [ -d target/doc_upload ]; then rm -rf target/doc_upload; fi
mkdir target/doc_upload && mv target/doc target/doc_upload/doc
- name: Upload documentation
uses: crazy-max/ghaction-github-pages@v2
with:
Expand Down

0 comments on commit dc1628a

Please sign in to comment.