Skip to content

Commit

Permalink
fix: Fixed installation of zip Debian package in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
2b-t committed Feb 11, 2023
1 parent 1321d67 commit 781c03d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
- name: Compile Latex files with Make
run: make all
- name: Install Zip package
run: apt-get install zip
run: |
apt-get update
apt-get install -y zip
- name: Zip PDF files
run: find build -name '*.pdf' | zip -j Examples.zip -@
- name: Upload Zip file to repository release
Expand All @@ -26,7 +28,7 @@ jobs:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: Examples.zip
asset_name: Examples.zip
tag: latest
tag: Examples
overwrite: true
body: "Auto-generated Latex Tikz PDF files"

0 comments on commit 781c03d

Please sign in to comment.