File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments