File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,14 @@ jobs:
37
37
pkg-name : ${{ matrix.pkg-name }}
38
38
nb-dirs : ${{ env.NB_DIRS }}
39
39
40
+ - run : |
41
+ mkdir pypi/${{ matrix.pkg-name }}
42
+ cp dist/* pypi/${{ matrix.pkg-name }}/
43
+
40
44
- uses : actions/upload-artifact@v4
41
45
with :
42
46
name : ${{ inputs.artifact-name }}-${{ matrix.pkg-name }}
43
- path : dist
47
+ path : pypi
44
48
45
49
merge-artifacts :
46
50
runs-on : ubuntu-22.04
@@ -49,12 +53,11 @@ jobs:
49
53
with : # download all build artifacts
50
54
pattern : ${{ inputs.artifact-name }}-*
51
55
merge-multiple : true
52
- path : dist
56
+ path : pypi
53
57
- name : Keep artifact
54
58
run : python -c "print('DAYS=' + str(5 if '${{ github.event_name }}'.startswith('pull_request') else 0))" >> $GITHUB_ENV
55
- - run : ls -lh dist/
56
59
- uses : actions/upload-artifact@v4
57
60
with :
58
61
name : ${{ inputs.artifact-name }}
59
- path : dist
62
+ path : pypi
60
63
retention-days : ${{ env.DAYS }}
You can’t perform that action at this time.
0 commit comments