Skip to content

Commit ce2ba5a

Browse files
authored
Merge pull request #463 from runkecheng/bug_ci_fix_build_args
ci: fix syntax error in sidecar ci.
2 parents 0fc8226 + 24994ec commit ce2ba5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_sidecar_image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535

3636
- name: Build and push mysql57 sidecar
3737
uses: docker/build-push-action@v2
38-
if: ${{ matrix.version }} == mysql57
38+
if: ${{ matrix.version == 'mysql57'}}
3939
with:
4040
push: true
4141
file: Dockerfile.sidecar
4242
tags: radondb/${{ matrix.version }}-sidecar:${{ inputs.image_tag }}
4343

4444
- name: Build and push mysql80 sidecar
4545
uses: docker/build-push-action@v2
46-
if: ${{ matrix.version }} == mysql80
46+
if: ${{ matrix.version == 'mysql80' }}
4747
with:
4848
push: true
4949
file: Dockerfile.sidecar

0 commit comments

Comments
 (0)