Skip to content

Commit

Permalink
fix: Correct conditional syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
abensonca committed Sep 1, 2024
1 parent fe5e5ed commit 0e3a5ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testModel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
run: |
apt -y update && apt -y upgrade
apt -y install ${{ inputs.install }}
- name: Check for IRATE deeploy secret availability
- name: Check for IRATE deploy secret availability
id: secret-check
# Perform secret check and put boolean result as an output.
shell: bash
Expand All @@ -110,7 +110,7 @@ jobs:
echo "available=false" >> $GITHUB_OUTPUT;
fi
- name: Install IRATE
if: ${{ format('{0}',inputs.needsIRATE) == '1' && ${{ steps.secret-check.outputs.available == 'true' }}
if: ${{ format('{0}',inputs.needsIRATE) == '1' && steps.secret-check.outputs.available == 'true' }}
run: |
apt -y update && apt -y upgrade
apt -y install python3-minimal python3-dev python3-setuptools libhdf5-dev curl libntirpc-dev python3-h5py python3-numpy cython3
Expand Down

0 comments on commit 0e3a5ad

Please sign in to comment.