From f7311fcb04e7ff27d192170fa0a06ab49e0c5f63 Mon Sep 17 00:00:00 2001 From: Thilo von Neumann Date: Wed, 25 Jan 2023 18:01:03 +0100 Subject: [PATCH] Use pypa/gh-action-pypi-publish action instead of etils-actions/pypi-auto-publish@v1 --- .github/workflows/release.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5e460b1..17927220 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,8 +23,6 @@ jobs: - name: Build run: >- python -m build --sdist --wheel --outdir dist/ . - - uses: etils-actions/pypi-auto-publish@v1 + - uses: pypa/gh-action-pypi-publish@release/v1 with: - pypi-token: ${{ secrets.PYPI_API_TOKEN }} - gh-token: ${{ secrets.GITHUB_TOKEN }} - parse-changelog: false # requires CHANGELOG.md in appropriate format + password: ${{ secrets.PYPI_API_TOKEN }}