From 316e163c045c051a73237ca19ce32545e6f4c38f Mon Sep 17 00:00:00 2001 From: Joachim Folz Date: Tue, 3 Sep 2024 17:28:13 +0200 Subject: [PATCH] replace deprecated actions/create-release@v1 with ncipollo/release-action --- .github/workflows/build_wheels.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 2b20e1e..96e9921 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -65,13 +65,9 @@ jobs: merge-multiple: true - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@v1.10.0 - - name: Create Github Release - uses: actions/create-release@v1 - id: create_release + - name: Create Release + uses: ncipollo/release-action@v1.14.0 with: + artifacts: dist/* draft: false prerelease: false - release_name: ${{ github.ref_name }} - tag_name: ${{ github.ref }} - env: - GITHUB_TOKEN: ${{ github.token }}