From 1e31872ae33dfb54db9781d93d74e36ef5e97432 Mon Sep 17 00:00:00 2001 From: Steven Murray Date: Tue, 10 Jan 2023 00:27:05 -0700 Subject: [PATCH] ci: fix stupid typo --- .github/workflows/publish.yaml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index a11a36d..7de6376 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -25,15 +25,7 @@ jobs: python -m build . - name: Publish to PyPI - if: startsWith(github.event.ref, 'refs/tags/v') && + if: startsWith(github.event.ref, 'refs/tags/v') uses: pypa/gh-action-pypi-publish@master with: - password: ${{ secrets.pypi_password }} - - - name: Publish the release notes - uses: release-drafter/release-drafter@v5.21.1 - with: - publish: ${{ startsWith(github.event.ref, 'refs/tags/v') }} - tag: ${{ github.ref_name }} - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.pypi_password }} \ No newline at end of file