Skip to content

Commit

Permalink
More sudo, bulk APT
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Wieczorek <[email protected]>
  • Loading branch information
twz123 committed Oct 11, 2023
1 parent 7e8be0e commit 9e719e6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cleaner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
APT_PACKAGES_TO_REMOVE: >-
acl aria2 autoconf automake bison dbus dnsutils fakeroot flex
111-i-wont-break-apt acl aria2 autoconf automake bison dbus dnsutils fakeroot flex
fonts-noto-color-emoji ftp g++ gcc gnupg2 haveged imagemagick lib32z1
libc++-dev libc++abi-dev libc6-dev libcurl4 libgbm-dev libgconf-2-4
libgsl-dev libgtk-3-0 libmagic-dev libmagickcore-dev libmagickwand-dev
Expand Down Expand Up @@ -44,6 +44,8 @@ jobs:
df -h
sudo -E apt-get purge -y -- $APT_PACKAGES_TO_REMOVE
for pkg in $APT_PACKAGES_TO_REMOVE; do
sudo -E apt-get purge -y -- "$pkg"
done
Expand All @@ -66,7 +68,8 @@ jobs:
df -h
find / -type f -mount | tee files
sudo find / -type f -mount | tee files
return 0
- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 9e719e6

Please sign in to comment.