We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37397a5 commit 070d0d6Copy full SHA for 070d0d6
.github/workflows/test.yaml
@@ -26,6 +26,15 @@ jobs:
26
run: |
27
echo "wheel=$(ls dist/*.whl)" >> $GITHUB_OUTPUT
28
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
38
39
static_checks:
40
runs-on: ubuntu-latest
0 commit comments