diff options
| author | 2026-01-14 19:55:47 +0800 | |
|---|---|---|
| committer | 2026-01-14 19:55:47 +0800 | |
| commit | a9f7a45a9537f3bfd0216ee47c9391ec9fd67587 (patch) | |
| tree | 11dd9e588745ee88b7cd6099282bb46214beb96a /.github/workflows | |
| parent | a3da667bf3ee467136d7d5f218acabb8e23b390e (diff) | |
| download | DropOut-a9f7a45a9537f3bfd0216ee47c9391ec9fd67587.tar.gz DropOut-a9f7a45a9537f3bfd0216ee47c9391ec9fd67587.zip | |
fix: remove unnecessary 'linuxdeploy' package from Arch Linux dependencies
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/test.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e14de5c..6121efc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -144,7 +144,7 @@ jobs: - name: Install Dependencies run: | pacman -Syu --noconfirm - pacman -S --noconfirm webkit2gtk-4.1 base-devel curl wget file openssl appmenu-gtk-module libappindicator-gtk3 librsvg git fuse2 linuxdeploy + pacman -S --noconfirm webkit2gtk-4.1 base-devel curl wget file openssl appmenu-gtk-module libappindicator-gtk3 librsvg git fuse2 # Fix makepkg running as root sed -i 's/E_ROOT=1/E_ROOT=0/' /usr/bin/makepkg || true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0d50313..6cb5753 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,7 +57,7 @@ jobs: - name: Install Dependencies run: | pacman -Syu --noconfirm - pacman -S --noconfirm webkit2gtk-4.1 base-devel curl wget file openssl appmenu-gtk-module libappindicator-gtk3 librsvg git fuse2 linuxdeploy + pacman -S --noconfirm webkit2gtk-4.1 base-devel curl wget file openssl appmenu-gtk-module libappindicator-gtk3 librsvg git fuse2 - uses: actions/checkout@v4 |