Skip to content

Commit

Permalink
ci/cd: update dependencies setup
Browse files Browse the repository at this point in the history
  • Loading branch information
kimminss0 committed Nov 23, 2024
1 parent 17e591d commit ae6e5e7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,31 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install \
texlive \
texlive-latex-extra \
texlive-luatex \
imagemagick \
ghostscript
echo <<EOF | sudo tee /etc/ImageMagick-6/policy.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE policymap [
<!ELEMENT policymap (policy)*>
<!ATTLIST policymap xmlns CDATA #FIXED ''>
<!ELEMENT policy EMPTY>
<!ATTLIST policy xmlns CDATA #FIXED '' domain NMTOKEN #REQUIRED
name NMTOKEN #IMPLIED pattern CDATA #IMPLIED rights NMTOKEN #IMPLIED
stealth NMTOKEN #IMPLIED value CDATA #IMPLIED>
]>
<policymap>
<policy domain="Undefined" rights="none"/>
</policymap>
EOF
- uses: haskell-actions/setup@v2
id: setup
with:
Expand Down

0 comments on commit ae6e5e7

Please sign in to comment.