Skip to content

Commit

Permalink
adds step to install texlive-full before build notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
iagorrr committed Aug 19, 2024
1 parent 9164459 commit 3620c37
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/notebook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ jobs:
with:
image: mateusvrs/cp-notebook:v1.0 # Thank you mateusvrs
options: -w /usr/src/app -v ${{ github.workspace }}:/usr/src/app
run: make notebook readme
run: sudo apt-get update && sudo apt-get install -y texlive-full && make notebook readme

- name: Notebook Update - Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: 'notebook.pdf'
file_pattern: "notebook.pdf"

commit_message: 'updates notebok'
commit_message: "updates notebok"

- name: README Update - Auto Commit
uses: stefanzweifel/git-auto-commit-action@v5
with:
file_pattern: 'README.md'
file_pattern: "README.md"

commit_message: 'update README to match with notebook'
commit_message: "update README to match with notebook"

0 comments on commit 3620c37

Please sign in to comment.