Skip to content

Commit

Permalink
GHA: do not need sudo in container
Browse files Browse the repository at this point in the history
  • Loading branch information
zmughal committed Nov 13, 2023
1 parent e6d6e34 commit cc07bbd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Install pre-reqs
run: |
sudo apt-get install git
apt-get install git
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Install ikiwiki
run: |
sudo apt-get install \
apt-get install \
ikiwiki \
libtext-multimarkdown-perl \
libimage-magick-perl \
Expand All @@ -61,13 +61,13 @@ jobs:
graphviz
# not latest version
#sudo apt-get install \
#apt-get install \
#tj3
sudo apt-get install \
apt-get install \
dvipng # for teximg plugin
sudo apt-get install \
apt-get install \
mupdf-tools # for mutool
cpanm --local-lib=~/perl5 local::lib && eval $(perl -I ~/perl5/lib/perl5/ -Mlocal::lib)
Expand Down

0 comments on commit cc07bbd

Please sign in to comment.