Skip to content

Commit 4deb734

Browse files
authored
Update cd-dgraph.yml
Fixing if condition for Standalone build
1 parent daefc90 commit 4deb734

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cd-dgraph.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
[[ "${{ inputs.custom-build }}" = true ]] && docker tag dgraph/dgraph-custom:${{ env.DGRAPH_RELEASE_VERSION }}-amd64 || true
9393
- name: Make Dgraph Standalone Docker Image with Version
9494
#No need to build and push Standalone Image when its a custom build
95-
if: ${{ inputs.custom-build == 'false' }}
95+
if: inputs.custom-build == false
9696
run: |
9797
make docker-image-standalone DGRAPH_VERSION=${{ env.DGRAPH_RELEASE_VERSION }}-amd64
9898
[[ "${{ inputs.latest }}" = true ]] && docker tag dgraph/standalone:${{ env.DGRAPH_RELEASE_VERSION }}-amd64 dgraph/standalone:latest-amd64 || true
@@ -187,7 +187,7 @@ jobs:
187187
[[ "${{ inputs.custom-build }}" = true ]] && docker tag dgraph/dgraph-custom:${{ env.DGRAPH_RELEASE_VERSION }}-arm64 || true
188188
- name: Make Dgraph Standalone Docker Image with Version
189189
#No need to build and push Standalone Image when its a custom build
190-
if: ${{ inputs.custom-build == 'false' }}
190+
if: inputs.custom-build == false
191191
run: |
192192
make docker-image-standalone DGRAPH_VERSION=${{ env.DGRAPH_RELEASE_VERSION }}-arm64
193193
[[ "${{ inputs.latest }}" = true ]] && docker tag dgraph/standalone:${{ env.DGRAPH_RELEASE_VERSION }}-arm64 dgraph/standalone:latest-arm64 || true

0 commit comments

Comments
 (0)