We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c9c053 commit 7afd03eCopy full SHA for 7afd03e
1 file changed
.github/workflows/test_publish_pure_python.yml
@@ -29,3 +29,19 @@ jobs:
29
test_command: python -c "import os; assert os.getenv('CUSTOM_VAR') == 'custom value'"
30
env: |
31
CUSTOM_VAR: custom value
32
+
33
34
+ test-upload-external:
35
+ name: Use built dists and test upload
36
+ runs-on: ubuntu-latest
37
+ needs: [setenv]
38
+ steps:
39
+ - name: Download artifacts
40
+ uses: actions/download-artifact@v5
41
+ with:
42
+ merge-multiple: true
43
+ pattern: dist-*
44
+ path: dist
45
46
+ - name: Run upload (but don't actually upload)
47
+ uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments