Skip to content

Commit

Permalink
Update upload/download-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
ndevenish committed Sep 13, 2024
1 parent 7a5242a commit feef3ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Build sdist
run: pipx run poetry build -f sdist

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz
name: sdist
Expand All @@ -37,7 +37,7 @@ jobs:
os: [ubuntu-20.04, macos-10.15, windows-2019]

steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: sdist
path: dist
Expand All @@ -55,7 +55,7 @@ jobs:
CIBW_TEST_COMMAND: pytest --regression {package}/tests
CIBW_BEFORE_TEST: pip install pytest dials-data

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

Expand All @@ -67,12 +67,12 @@ jobs:
# alternatively, to publish when a GitHub Release is created, use the following rule:
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: sdist
path: dist

- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down

0 comments on commit feef3ff

Please sign in to comment.