Skip to content

Commit 359ee38

Browse files
committed
CI: Fix default kayobe base image when built on push
Inputs are not available to workflows triggered by a push. Apply a default to the base image.
1 parent 6bd3c5e commit 359ee38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/stackhpc-build-kayobe-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
build-args: |
9191
http_proxy=${{ inputs.http_proxy }}
9292
https_proxy=${{ inputs.https_proxy }}
93-
BASE_IMAGE=${{ inputs.base_image }}
93+
BASE_IMAGE=${{ inputs.base_image || 'rockylinux:9' }}
9494
push: true
9595
tags: ${{ steps.meta.outputs.tags }}
9696
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)