mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2026-03-09 07:15:51 -05:00
fix: remove trailing OR operators in infra-health-check.yml
This commit is contained in:
8
.github/workflows/infra-health-check.yml
vendored
8
.github/workflows/infra-health-check.yml
vendored
@@ -93,14 +93,14 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: 📥 Checkout repository
|
- name: 📥 Checkout repository
|
||||||
if: |
|
if: |
|
||||||
(matrix.platform == 'linux' && inputs.test_linux != false) ||
|
(matrix.platform == 'linux' && inputs.test_linux != false)
|
||||||
uses: actions/checkout@v6
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: 🔑 Log in to GitHub Container Registry
|
- name: 🔑 Log in to GitHub Container Registry
|
||||||
if: |
|
if: |
|
||||||
(matrix.platform == 'linux' && inputs.test_linux != false) ||
|
(matrix.platform == 'linux' && inputs.test_linux != false)
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
@@ -109,12 +109,12 @@ jobs:
|
|||||||
|
|
||||||
- name: 🐳 Pull Docker Image
|
- name: 🐳 Pull Docker Image
|
||||||
if: |
|
if: |
|
||||||
(matrix.platform == 'linux' && inputs.test_linux != false) ||
|
(matrix.platform == 'linux' && inputs.test_linux != false)
|
||||||
run: docker pull ${{ env.CONTAINER_IMAGE }}
|
run: docker pull ${{ env.CONTAINER_IMAGE }}
|
||||||
|
|
||||||
- name: 📊 Container Information
|
- name: 📊 Container Information
|
||||||
if: |
|
if: |
|
||||||
(matrix.platform == 'linux' && inputs.test_linux != false) ||
|
(matrix.platform == 'linux' && inputs.test_linux != false)
|
||||||
run: |
|
run: |
|
||||||
echo "📊 === CONTAINER INFORMATION ==="
|
echo "📊 === CONTAINER INFORMATION ==="
|
||||||
echo "📋 Platform: ${{ matrix.platform }}"
|
echo "📋 Platform: ${{ matrix.platform }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user