Skip to content

Commit

Permalink
fix 'none' image case
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgessinger committed Nov 5, 2024
1 parent 8b01f57 commit 7aeb7cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/common.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Derive base image for the build cache
run: |
if [ "${{ inputs.image }}" != "none" ]; then
if [ "${{ inputs.image }}" != "" ]; then
export BASE_IMAGE="${{ inputs.image }}"
elif [ "${{ inputs.os }}" == "ubuntu-22.04 ]; then
export BASE_IMAGE="ubuntu:22.04"
Expand Down

0 comments on commit 7aeb7cf

Please sign in to comment.