From 5e313fc87ea05963d54f3e02f6308028d9571bcd Mon Sep 17 00:00:00 2001 From: Jules-WinnfieldX Date: Sun, 3 Dec 2023 18:51:50 -0700 Subject: [PATCH] Remove build --- .github/workflows/publish-to-pypi.yaml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index e082d548a..e18d0828a 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -13,10 +13,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Python 3.10 + - name: Set up Python 3.11.4 uses: actions/setup-python@v4 with: - python-version: "3.10" + python-version: "3.11.4" - name: Install Poetry run: | @@ -33,14 +33,6 @@ jobs: run: | [[ "$(poetry version --short)" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || echo prerelease=true >> $GITHUB_OUTPUT - - name: Create Release - uses: ncipollo/release-action@v1 - with: - artifacts: "dist/*" - token: ${{ secrets.GITHUB_TOKEN }} - draft: false - prerelease: steps.check-version.outputs.prerelease == 'true' - - name: Publish to PyPI env: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}