fix: remove trailing OR operators in infra-health-check.yml

This commit is contained in:
Vijay Janapa Reddi
2026-03-06 10:14:56 -05:00
parent a90c8803ff
commit 3234a4fbc0

View File

@@ -93,14 +93,14 @@ jobs:
steps:
- name: 📥 Checkout repository
if: |
(matrix.platform == 'linux' && inputs.test_linux != false) ||
(matrix.platform == 'linux' && inputs.test_linux != false)
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: 🔑 Log in to GitHub Container Registry
if: |
(matrix.platform == 'linux' && inputs.test_linux != false) ||
(matrix.platform == 'linux' && inputs.test_linux != false)
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
@@ -109,12 +109,12 @@ jobs:
- name: 🐳 Pull Docker Image
if: |
(matrix.platform == 'linux' && inputs.test_linux != false) ||
(matrix.platform == 'linux' && inputs.test_linux != false)
run: docker pull ${{ env.CONTAINER_IMAGE }}
- name: 📊 Container Information
if: |
(matrix.platform == 'linux' && inputs.test_linux != false) ||
(matrix.platform == 'linux' && inputs.test_linux != false)
run: |
echo "📊 === CONTAINER INFORMATION ==="
echo "📋 Platform: ${{ matrix.platform }}"