Skip to content

Commit

Permalink
fix alma releases
Browse files Browse the repository at this point in the history
  • Loading branch information
micprog committed Jan 24, 2024
1 parent 962b8c5 commit 1cb22a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/scripts/gen_dockerfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ if [ $(echo $full_tgtname | cut -d ':' -f 1) = "debian" ]; then
echo 'RUN apt update && apt -y install build-essential curl gcc make' >> $filename
fi
if [ $(echo $full_tgtname | cut -d ':' -f 1) = "almalinux" ]; then
if [ $(echo $full_tgtname | cut -d ':' -f 2 | cut -d '.' -f 1) = '8' ]; then
echo 'RUN rpm --import https://repo.almalinux.org/almalinux/RPM-GPG-KEY-AlmaLinux' >> $filename
fi
echo 'RUN dnf -y update && dnf -y group install "Development Tools"' >> $filename
fi
if [[ $(echo $full_tgtname | cut -d ':' -f 1) == "redhat"* ]]; then
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,15 @@ jobs:
- rhel:8.6
- rhel:8.7
- rhel:8.8
- rhel:8.9
- rhel:9.0
- rhel:9.1
- rhel:9.2
- rhel:9.3
- almalinux:8.6
- almalinux:8.7
- almalinux:8.8
- almalinux:8.9
- almalinux:9.0
- almalinux:9.1
- almalinux:9.2
Expand Down

0 comments on commit 1cb22a9

Please sign in to comment.