Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
use single quotes for bash symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
derekk-nm committed Jul 10, 2024
1 parent ad0bed4 commit 5cb2239
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nm-upload-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
# want to push RELEASE assets to the external pypi.org
# publish the wheel file
- name: push wheel to pypi.org
if: ${{ inputs.wf_category == "RELEASE" }}
if: ${{ inputs.wf_category == 'RELEASE' }}
uses: neuralmagic/nm-actions/actions/publish_whl/action.yml@v1.0.0
with:
username: ${{ secrets.PYPI_PUBLIC_USER }}
Expand All @@ -93,7 +93,7 @@ jobs:

# publish the tar.gz file
- name: push tar.gz to pypi.org
if: ${{ inputs.wf_category == "RELEASE" }}
if: ${{ inputs.wf_category == 'RELEASE' }}
uses: neuralmagic/nm-actions/actions/publish_whl/action.yml@v1.0.0
with:
username: ${{ secrets.PYPI_PUBLIC_USER }}
Expand Down

0 comments on commit 5cb2239

Please sign in to comment.