Skip to content

Commit

Permalink
fix ifs in dockerhub.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
salmma committed Jun 21, 2021
1 parent 873996f commit 4b74dc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push latest QC Atlas
if: ${{ steps.vars.outputs.tag }} == 'master'
if: ${{ steps.vars.outputs.tag == 'master' }}
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: planqk/atlas:latest

- name: Build and push version of QC Atlas
if: ${{ steps.vars.outputs.tag }} != 'master'
if: ${{ steps.vars.outputs.tag != 'master' }}
uses: docker/build-push-action@v2
with:
context: .
Expand Down

0 comments on commit 4b74dc6

Please sign in to comment.