Skip to content

Commit 070d0d6

Browse files
committed
add to prepare job
1 parent 37397a5 commit 070d0d6

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/test.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ jobs:
2626
run: |
2727
echo "wheel=$(ls dist/*.whl)" >> $GITHUB_OUTPUT
2828
echo "tarball=$(ls dist/*.tar.gz)" >> $GITHUB_OUTPUT
29+
- name: Store the distribution files for use in other stages
30+
# `tests`, `pypi-publish`, and `docker-publish` will use the same
31+
# pre-built distributions, so we make sure to release the exact
32+
# same package that was tested
33+
uses: actions/upload-artifact@v4
34+
with:
35+
name: python-distribution-files
36+
path: dist/
37+
retention-days: 1
2938

3039
static_checks:
3140
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)