From 4bf88c662dd749f986fbc2659168f87875dbc628 Mon Sep 17 00:00:00 2001 From: James Briggs <james.briggs@hotmail.com> Date: Sat, 11 May 2024 21:00:32 +0800 Subject: [PATCH] fix: remove final release from workflow --- .github/workflows/release.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 44ba7894..57b3eb0b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,18 +40,3 @@ jobs: poetry --no-interaction -v publish --build --repository remote --username "__token__" --password "$PYPI_API_TOKEN" env: PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} - - release: - needs: publish - runs-on: ubuntu-latest - steps: - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} - draft: false - prerelease: false -- GitLab