File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 43
43
44
44
- uses : actions/upload-artifact@v4
45
45
with :
46
- name : ${{ inputs.artifact-name }}-${{ matrix.pkg-name }}
46
+ name : ${{ inputs.artifact-name }}-${{ strategy.job-index }}
47
47
path : pypi
48
48
retention-days : 1
49
49
@@ -52,13 +52,15 @@ jobs:
52
52
steps :
53
53
- uses : actions/download-artifact@v4
54
54
with : # download all build artifacts
55
- pattern : ${{ inputs.artifact-name }}- *
55
+ pattern : ${{ inputs.artifact-name }}*
56
56
merge-multiple : true
57
+ - run : ls -lh pypi/
58
+
57
59
- name : Keep artifact
58
60
run : python -c "print('DAYS=' + str(5 if '${{ github.event_name }}'.startswith('pull_request') else 0))" >> $GITHUB_ENV
59
- - run : ls -lh pypi/
60
61
- uses : actions/upload-artifact@v4
61
62
with :
62
63
name : ${{ inputs.artifact-name }}
63
64
path : pypi
64
65
retention-days : ${{ env.DAYS }}
66
+ if-no-files-found : error
You can’t perform that action at this time.
0 commit comments