Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 19 additions & 5 deletions .github/workflows/build_release_assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,25 @@ jobs:
- clearlinux:latest

steps:
- name: Install requirements
run: |
case "${{ matrix.image }}" in
debian:*|ubuntu:*)
apt update
apt install --no-install-recommends -y git
;;
rockylinux*)
yum install -y git-core
;;
opensuse*)
zypper install -y git-core
;;
clearlinux*)
swupd bundle-add libstdcpp
swupd bundle-add git
;;
esac

- name: Download OS packages
uses: actions/download-artifact@v4
with:
Expand All @@ -304,20 +323,15 @@ jobs:
run: |
case "${{ matrix.image }}" in
debian:*|ubuntu:*)
apt update
apt install --no-install-recommends -y git
dpkg -i packages/*.deb
;;
rockylinux*)
yum install -y git-core
rpm -i packages/*.rpm
;;
opensuse*)
zypper install -y git-core
rpm -i packages/*.rpm
;;
clearlinux*)
swupd bundle-add git

# Unpack ggshield in /usr/local/ggshield
pkg_dir=$PWD/packages
Expand Down
Loading