Skip to content

Commit

Permalink
Fix up conditional jobs and quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Oct 10, 2023
1 parent bf8bf3e commit 53273f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Build and push Docker image to Docker Hub (no solvers)
uses: docker/build-push-action@v5
if: ${{ matrix.build-args }} == "No solvers"
if: matrix.build-args == 'No solvers'
with:
context: .
file: scripts/Dockerfile
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Build and push Docker image to Docker Hub (with solvers)
uses: docker/build-push-action@v5
if: ${{ matrix.build-args }} != "No solvers"
if: matrix.build-args != 'No solvers'
with:
context: .
file: scripts/Dockerfile
Expand Down

0 comments on commit 53273f5

Please sign in to comment.