Skip to content

Commit f3e589a

Browse files
committed
Ensure string output is handled as boolean for 'pull'
1 parent c0991ac commit f3e589a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
context: .
7171
file: dockerfiles/dnf/Dockerfile
72-
push: ${{ steps.set_tag.outputs.push }}
72+
push: ${{ steps.set_tag.outputs.push == "true" }}
7373
tags: ghcr.io/openchami/image-build:${{ steps.set_tag.outputs.tag }}
7474

7575
- name: Build and push Docker image (EL9)
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
context: .
8181
file: dockerfiles/dnf/Dockerfile.el9
82-
push: ${{ steps.set_tag.outputs.push }}
82+
push: ${{ steps.set_tag.outputs.push == "true" }}
8383
tags: ghcr.io/openchami/image-build-el9:${{ steps.set_tag.outputs.tag }}
8484

8585
- name: Generate release notes

0 commit comments

Comments
 (0)