From 0981a603cd2e1e7f45caeb80642472ab35c35092 Mon Sep 17 00:00:00 2001 From: Derek Kozikowski <106621615+derekk-nm@users.noreply.github.com> Date: Wed, 10 Jul 2024 10:45:20 -0400 Subject: [PATCH] use single quotes for bash symbol (#374) bash symbol in the yml needs single quotes, not double quotes --- .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 }}