Skip to content

Commit

Permalink
install unzip
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianmurariu committed Jul 15, 2024
1 parent f3dd380 commit b3d1ec6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/_release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,32 +65,32 @@ jobs:
ubuntu)
echo "Installing openssl-dev on Ubuntu..."
apt update -y
apt install -y pkg-config libssl-dev libc6 build-essential musl-tools
apt install -y pkg-config libssl-dev libc6 build-essential musl-tools unzip
;;
arch)
echo "Installing openssl-dev on Arch Linux..."
pacman -Syu --noconfirm pkg-config openssl musl
pacman -Syu --noconfirm pkg-config openssl musl unzip
;;
fedora)
echo "Installing openssl-dev on Fedora..."
dnf update -y
dnf install -y pkg-config openssl-devel musl
dnf install -y pkg-config openssl-devel musl unzip
;;
alpine)
echo "Installing openssl-dev on Alpine Linux..."
apk update -y
apk add pkgconfig openssl-dev musl-dev
apk add pkgconfig openssl-dev musl-dev unzip
;;
centos)
echo "Installing openssl-dev on CentOS..."
yum update -y
yum install -y pkgconfig openssl-devel
yum install -y pkgconfig openssl-devel unzip
;;
almalinux)
echo "Installing openssl-dev on almalinux..."
dnf update -y
dnf group install -y 'Development Tools'
dnf install -y pkg-config openssl-devel
dnf install -y pkg-config openssl-devel unzip
;;
*)
echo "Unsupported distribution: $ID"
Expand Down

0 comments on commit b3d1ec6

Please sign in to comment.