Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable pypi publishing for a test #348

Merged
merged 1 commit into from
Jun 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/publish-a-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ jobs:
if-no-files-found: error
retention-days: 1

publish-to-pypi:
name: 📦 Publish wakepy to PyPI
needs: build-and-test
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/wakepy
permissions:
id-token: write # mandatory for trusted publishing
steps:
- uses: actions/download-artifact@v4
with:
name: wakepy-python-packages
path: ./dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 #v1.8.14
with:
print-hash: true
# publish-to-pypi:
# name: 📦 Publish wakepy to PyPI
# needs: build-and-test
# runs-on: ubuntu-latest
# environment:
# name: pypi
# url: https://pypi.org/p/wakepy
# permissions:
# id-token: write # mandatory for trusted publishing
# steps:
# - uses: actions/download-artifact@v4
# with:
# name: wakepy-python-packages
# path: ./dist/
# - name: Publish distribution 📦 to PyPI
# uses: pypa/gh-action-pypi-publish@81e9d935c883d0b210363ab89cf05f3894778450 #v1.8.14
# with:
# print-hash: true

publish-to-github-releases:
name: 📦 Publish wakepy to GitHub
Expand Down