File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -102,13 +102,22 @@ jobs:
102
102
pattern : cibw-*
103
103
path : dist/
104
104
merge-multiple : true
105
+ - name : Test presence of artifacts
106
+ # This step is not necessary, but it can be useful for debugging
107
+ # and to check where the artifacts are downloaded
108
+ # and if they are downloaded correctly
109
+ # It will list all files in the current directory and its subdirectories
110
+ run : |
111
+ # Test if the artifacts are downloaded correctly and where they are
112
+ ls -R
105
113
106
114
- name : Generate artifact attestations
107
115
uses : actions/attest-build-provenance@v2
108
116
with :
109
- subject-path : " dist/*"
117
+ subject-path : dist/*
110
118
111
119
- name : Publish Distribution to PyPI
112
120
uses : pypa/gh-action-pypi-publish@release/v1
113
- # with:
121
+ with :
122
+ package-dir : dist/
114
123
# To test: repository-url: https://test.pypi.org/legacy/
You can’t perform that action at this time.
0 commit comments