We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f850a2c commit d4bb26fCopy full SHA for d4bb26f
.github/workflows/stackhpc-container-image-build.yml
@@ -23,6 +23,11 @@ on:
23
type: boolean
24
required: false
25
default: true
26
+ rocky-linux-9:
27
+ description: Build Rocky Linux 9 images?
28
+ type: boolean
29
+ required: false
30
+ default: true
31
ubuntu-focal:
32
description: Build Ubuntu Focal 20.04 images?
33
@@ -75,6 +80,10 @@ jobs:
75
80
echo -n "$comma\"centos\"" >> $GITHUB_OUTPUT
76
81
comma=", "
77
82
fi
83
+ if [[ ${{ inputs.rocky-linux-9 }} == 'true' ]]; then
84
+ echo -n "$comma\"rocky\"" >> $GITHUB_OUTPUT
85
+ comma=", "
86
+ fi
78
87
if [[ ${{ inputs.ubuntu-focal }} == 'true' ]]; then
79
88
echo -n "$comma\"ubuntu\"" >> $GITHUB_OUTPUT
89
0 commit comments