We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34a6a7e commit dd4f3f3Copy full SHA for dd4f3f3
.github/workflows/cd-post-release-tests.yml
@@ -162,10 +162,10 @@ jobs:
162
163
- name: Install Syft
164
run: |
165
- if [[ "${{ inputs.release_platform }}" == "REAL_PYPI" ]]; then
+ if (${{ inputs.release_platform }} == "REAL_PYPI"); then
166
pip install syft==${{ inputs.syft_version }}
167
fi
168
- if [[ "${{ inputs.release_platform }}" == "TEST_PYPI" ]]; then
+ if (${{ inputs.release_platform }}" == "TEST_PYPI"); then
169
pip install -i https://test.pypi.org/simple/ syft==${{ inputs.syft_version }}
170
171
0 commit comments