Skip to content

Commit 58b7513

Browse files
committed
fix: != &&, == ||
1 parent ebc78ce commit 58b7513

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/nix-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ jobs:
4949
env:
5050
NIX_SIGN_SECRET_KEY: ${{ secrets.NIX_SIGN_SECRET_KEY }}
5151
- name: Log in to Docker Hub
52-
if: matrix.runner != 'macos-latest' || matrix.runner != 'macos-13'
52+
if: matrix.runner != 'macos-latest' && matrix.runner != 'macos-13'
5353
uses: docker/login-action@v2
5454
with:
5555
username: ${{ secrets.DOCKER_USERNAME }}
5656
password: ${{ secrets.DOCKER_PASSWORD }}
5757
- name: Build psql bundle with nix
58-
if: matrix.runner != 'macos-latest' || matrix.runner != 'macos-13'
58+
if: matrix.runner != 'macos-latest' && matrix.runner != 'macos-13'
5959
run: docker build -t base_nix -f docker/nix/Dockerfile .
6060
- name: Run build psql bundle
61-
if: matrix.runner != 'macos-latest' || matrix.runner != 'macos-13'
61+
if: matrix.runner != 'macos-latest' && matrix.runner != 'macos-13'
6262
run: |
6363
docker run -e AWS_ACCESS_KEY_ID=${{ env.AWS_ACCESS_KEY_ID }} \
6464
-e AWS_SECRET_ACCESS_KEY=${{ env.AWS_SECRET_ACCESS_KEY }} \

0 commit comments

Comments
 (0)