Skip to content

Commit

Permalink
fix release error on unknown shell command when uploading to pypi (#1224
Browse files Browse the repository at this point in the history
)
  • Loading branch information
imatiach-msft authored Feb 14, 2022
1 parent 81edd74 commit 01b5e4b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/release-rai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,6 @@ jobs:
path: ${{ matrix.package }}

- name: Publish responsibleai package to Test PyPI
shell: bash -l {0}
if: ${{ github.event.inputs.releaseType == 'Test' && matrix.package == 'responsibleai' }}
uses: pypa/gh-action-pypi-publish@master
with:
Expand All @@ -190,7 +189,6 @@ jobs:
packages_dir: ${{steps.download.outputs.download-path}}

- name: Publish responsibleai package to Prod PyPI
shell: bash -l {0}
if: ${{ github.event.inputs.releaseType == 'Prod' && matrix.package == 'responsibleai' }}
uses: pypa/gh-action-pypi-publish@master
with:
Expand All @@ -199,7 +197,6 @@ jobs:
packages_dir: ${{steps.download.outputs.download-path}}

- name: Publish raiwidgets package to Test PyPI
shell: bash -l {0}
if: ${{ github.event.inputs.releaseType == 'Test' && matrix.package == 'raiwidgets' }}
uses: pypa/gh-action-pypi-publish@master
with:
Expand All @@ -209,7 +206,6 @@ jobs:
packages_dir: ${{steps.download.outputs.download-path}}

- name: Publish raiwidgets package to Prod PyPI
shell: bash -l {0}
if: ${{ github.event.inputs.releaseType == 'Prod' && matrix.package == 'raiwidgets' }}
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit 01b5e4b

Please sign in to comment.