diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 540bb23f3..77bf27ae2 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -101,15 +101,12 @@ jobs: password: ${{ secrets.pypi_password }} - name: Create nightly release - uses: viperproject/create-nightly-release@v1 + uses: ncipollo/release-action@v1 if: inputs.nightly - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: nightly - release_name: Nightly Release - keep_num: 0 - keep_tags: false - body_path: | - - *.whl - - *.tar.gz \ No newline at end of file + allowUpdates: true + tag: nightly + name: Nightly Release + prerelease: true + removeArtifacts: true + artifacts: "*.whl,*.tar.gz" \ No newline at end of file