Skip to content

Commit

Permalink
Uncomment build wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
Opt-Mucca committed Mar 5, 2024
1 parent f96169e commit 079eac3
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,31 +34,31 @@ jobs:
with:
path: ./wheelhouse/*.whl

# build_sdist:
# name: Build source distribution
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

# - name: Build sdist
# shell: bash -l {0}
# run: pipx run build --sdist
- name: Build sdist
shell: bash -l {0}
run: pipx run build --sdist

# - uses: actions/upload-artifact@v3
# with:
# path: dist/*.tar.gz
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

# upload_pypi:
# needs: [build_wheels, build_sdist]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/download-artifact@v3
# with:
# name: artifact
# path: dist
upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist

# - uses: pypa/gh-action-pypi-publish@release/v1
# with:
# user: __token__
# password: ${{ secrets.PYPI_API_TOKEN }}
# verbose: true
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true

0 comments on commit 079eac3

Please sign in to comment.