Skip to content

Commit

Permalink
deploy.yml: Upgrade to new action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
wannesm committed Jun 19, 2024
1 parent 4dfe71e commit ac5f2d6
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,8 @@ jobs:
python -m pip install cibuildwheel==2.19.1
- name: Build wheel
run: |
pwd
ls
python -m cibuildwheel --output-dir dist/
ls dist/
env:
CIBW_BUILD_VERBOSITY: 2
# cp36-* and cp37-* do not support f-strings
Expand All @@ -94,7 +93,7 @@ jobs:
- name: Store wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/*.whl


Expand Down Expand Up @@ -151,10 +150,11 @@ jobs:
- name: Build
run: |
python -m build
ls dist/
- name: Store wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/*.whl

# Runners are not yet picked up?
Expand Down Expand Up @@ -254,10 +254,11 @@ jobs:
- name: Build
run: |
python -m build
ls dist/
- name: Store wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-${{ matrix.os }}-${{ matrix.python-version }}
path: dist/*.whl


Expand All @@ -278,7 +279,7 @@ jobs:
- name: Store artifacts
uses: actions/upload-artifact@v4
with:
name: wheels
name: dist-source
path: dist/*.tar.gz


Expand All @@ -292,7 +293,8 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: dist-*
merge-multiple: true
path: dist

- name: Publish package to PyPI
Expand Down

0 comments on commit ac5f2d6

Please sign in to comment.