Skip to content

Commit

Permalink
More frustrations with download-artifact breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarlow83 committed Dec 20, 2023
1 parent f4d4ea4 commit ec801e4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,18 @@ jobs:
./dist/*.whl
./dist/*.tar.gz
test_download_artifact:
name: Download artifact
needs: [wheel_sdist_linux]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist

- run: ls -R .

upload_pypi:
name: Deploy artifacts to PyPI
needs: [wheel_sdist_linux, test_linux, test_macos, test_windows]
Expand All @@ -243,6 +255,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist

- name: Publish to PyPI
Expand All @@ -259,6 +272,7 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist

- name: Create Release
Expand Down

0 comments on commit ec801e4

Please sign in to comment.