Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zingale committed Aug 17, 2023
1 parent 5bbf946 commit 842e644
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,19 @@ jobs:
- name: Build
run: |
make
mkdir out
mv CompHydroTutorial.pdf out
- name: Archive
uses: actions/upload-artifact@v3
with:
name: book-pdf
path: CompHydroTutorial.pdf
path: out/CompHydroTutorial.pdf

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./out
keep_files: true

0 comments on commit 842e644

Please sign in to comment.