From 5cb2239ecf8fe6ef646169fdd4e32eb2be34b078 Mon Sep 17 00:00:00 2001 From: derekk-nm Date: Wed, 10 Jul 2024 14:26:57 +0000 Subject: [PATCH] use single quotes for bash symbol --- .github/workflows/nm-upload-assets.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nm-upload-assets.yml b/.github/workflows/nm-upload-assets.yml index 8673e6ad410b1..4487bf9a4e287 100644 --- a/.github/workflows/nm-upload-assets.yml +++ b/.github/workflows/nm-upload-assets.yml @@ -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 }} @@ -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 }}