Skip to content

Commit

Permalink
Upgrade the publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed Nov 6, 2023
1 parent e3d7607 commit b750765
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ jobs:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- uses: actions/download-artifact@v3
with:
name: wheelhouse
path: wheelhouse
- run: python -m pip install --find-links wheelhouse aedat
- run: python -c 'import aedat'
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- uses: actions/download-artifact@v3
with:
name: wheelhouse
path: wheelhouse
- run: python -m pip install --find-links wheelhouse aedat
- run: python -c 'import aedat'
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
Expand All @@ -75,6 +75,6 @@ jobs:
name: dist
path: dist
- run: mv wheelhouse/* dist/
- uses: pypa/gh-action-pypi-publish@v1.5.0
- uses: pypa/gh-action-pypi-publish@v1.8.10
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit b750765

Please sign in to comment.