Skip to content

Commit 1532e8e

Browse files
committed
fix github workflow conditions
1 parent 36298e8 commit 1532e8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dockerhub.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
2929

3030
- name: Build and push latestPattern Atlas Api
31-
if: ${{ steps.vars.outputs.tag }} == 'master'
31+
if: ${{ steps.vars.outputs.tag == 'master' }}
3232
uses: docker/build-push-action@v2
3333
with:
3434
context: .
3535
push: true
3636
tags: planqk/latex-renderer:latest
37-
37+
3838
- name: Build and push version of Pattern Atlas Api
39-
if: ${{ steps.vars.outputs.tag }} != 'master'
39+
if: ${{ steps.vars.outputs.tag != 'master' }}
4040
uses: docker/build-push-action@v2
4141
with:
4242
context: .

0 commit comments

Comments
 (0)