Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka committed May 8, 2024
1 parent bc17d12 commit 432d361
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Empty file.
8 changes: 4 additions & 4 deletions .github/workflows/test-wheel-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Upload whl
uses: actions/upload-artifact@v4
with:
name: ${{ env.FILENAME }}
name: nightly-wheel.whl
path: ${{ env.FILENAME }}

- name: Push to internal pypi
Expand Down Expand Up @@ -83,16 +83,16 @@ jobs:
- name: Download whl
uses: actions/download-artifact@v4
with:
name: ${{ env.FILENAME }}
path: ${{ env.FILENAME }}
name: nightly-wheel.whl
path: nightly-wheel.whl

- name: Publish Nightly Wheel
if: ${{ inputs.DEV == 'false' && inputs.RELEASE == 'false'}}
uses: neuralmagic/nm-actions/actions/publish-whl@main
with:
username: ${{ secrets.PYPI_PUBLIC_USER }}
password: ${{ secrets.PYPI_PUBLIC_AUTH }}
whl: ./$FILENAME
whl: nightly-wheel.whl



0 comments on commit 432d361

Please sign in to comment.