Skip to content

Commit

Permalink
Comment out automated PyPI publishing from GHA
Browse files Browse the repository at this point in the history
This is currently untested and the next Furo release to TestPyPI will
validate the current release workflow. If that is deemed functional,
this will be reverted and the release process will stop uploading
locally-built wheels.
  • Loading branch information
pradyunsg committed Apr 27, 2024
1 parent 125ada3 commit 8c97f72
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/release.yml
Expand Up @@ -23,24 +23,24 @@ jobs:
name: distributions
path: dist/

publish-pypi:
runs-on: ubuntu-latest
# publish-pypi:
# runs-on: ubuntu-latest

if: startsWith(github.ref, 'refs/tags/')
needs: [build]
# if: startsWith(github.ref, 'refs/tags/')
# needs: [build]

environment:
name: release
permissions:
id-token: write
# environment:
# name: release
# permissions:
# id-token: write

steps:
- uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
# steps:
# - uses: actions/download-artifact@v4
# with:
# name: python-package-distributions
# path: dist/

- uses: pypa/gh-action-pypi-publish@release/v1
# - uses: pypa/gh-action-pypi-publish@release/v1

publish-testpypi:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8c97f72

Please sign in to comment.