We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36298e8 commit 1532e8eCopy full SHA for 1532e8e
.github/workflows/dockerhub.yml
@@ -28,15 +28,15 @@ jobs:
28
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
29
30
- name: Build and push latestPattern Atlas Api
31
- if: ${{ steps.vars.outputs.tag }} == 'master'
+ if: ${{ steps.vars.outputs.tag == 'master' }}
32
uses: docker/build-push-action@v2
33
with:
34
context: .
35
push: true
36
tags: planqk/latex-renderer:latest
37
-
+
38
- name: Build and push version of Pattern Atlas Api
39
- if: ${{ steps.vars.outputs.tag }} != 'master'
+ if: ${{ steps.vars.outputs.tag != 'master' }}
40
41
42
0 commit comments