Skip to content

Commit

Permalink
force parse to string vars evaluated from github inpusts
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham3121 committed Apr 1, 2024
1 parent 8c2c819 commit 990e681
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd-post-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,10 @@ jobs:
- name: Install Syft
run: |
if (${{ inputs.release_platform }} == "REAL_PYPI"); then
if ("${{ inputs.release_platform }}" == "REAL_PYPI"); then
pip install syft==${{ inputs.syft_version }}
fi
if (${{ inputs.release_platform }}" == "TEST_PYPI"); then
if ("${{ inputs.release_platform }}" == "TEST_PYPI"); then
pip install -i https://test.pypi.org/simple/ syft==${{ inputs.syft_version }}
fi
Expand Down Expand Up @@ -282,10 +282,10 @@ jobs:
env:
SYFT_VERSION: ${{ inputs.syft_version }}
run: |
if [[ "${{ inputs.release_platform }}" == "TEST_PYPI" ]]; then
if ("${{ inputs.release_platform }}" == "TEST_PYPI"); then
pip install -i https://test.pypi.org/simple/ syft==${{ inputs.syft_version }}[data_science];
fi
if [[ "${{ inputs.release_platform }}" == "REAL_PYPI" ]]; then
if ("${{ inputs.release_platform }}" == "REAL_PYPI"); then
pip install syft==${{ inputs.syft_version }}[data_science];
fi
Expand Down

0 comments on commit 990e681

Please sign in to comment.