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