Skip to content

Commit

Permalink
debug: add ls in workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
seballgeyer committed Aug 5, 2024
1 parent f6ec17e commit 853127b
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@
name: Publish Python distributions to PyPI

on:
release:
types:
- published
# release:
# types:
# - published
[push]

permissions:
contents: read
Expand All @@ -34,12 +35,14 @@ jobs:
pip install wheel
pip install setuptools
pip install versionner
- name: "have a look"
run: ls -la
- name: Build a binary wheel
run: python setup.py sdist bdist_wheel
- name: Build package
run: python -m build
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
# - name: Publish package
# uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
# with:
# user: __token__
# password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit 853127b

Please sign in to comment.