We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c552d07 commit 79b8177Copy full SHA for 79b8177
.github/scripts/gen_dockerfile.sh
@@ -7,7 +7,7 @@ touch $filename
7
if [ $(echo $full_tgtname | cut -d ':' -f 1) = "rhel" ]; then
8
export maj_version=$(echo $full_tgtname | cut -d ':' -f 2)
9
export full_tgtname=redhat/ubi${maj_version:0:1}:$(echo $full_tgtname | cut -d ':' -f 2)
10
- if [ $(echo $full_tgtname | cut -d ':' -f 2) = '9.0' ]; then
+ if [ $(echo $full_tgtname | cut -d ':' -f 2 | cut -d '.' -f 1) = '9' ]; then
11
export full_tgtname=$full_tgtname.0
12
fi
13
.github/workflows/release.yaml
@@ -23,8 +23,8 @@ jobs:
23
- ubuntu:18.04
24
- ubuntu:20.04
25
- ubuntu:22.04
26
- - fedora:35
27
- fedora:36
+ - fedora:37
28
- debian:10
29
- debian:11
30
- rhel:8.6
0 commit comments