Skip to content

Commit ed44fec

Browse files
committed
use dist
1 parent aa2eb72 commit ed44fec

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/_build-packages.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,10 @@ jobs:
3838
pkg-name: ${{ matrix.pkg-name }}
3939
nb-dirs: ${{ env.NB_DIRS }}
4040

41-
- run: |
42-
mkdir pypi/${{ matrix.pkg-name }}
43-
cp dist/* pypi/${{ matrix.pkg-name }}/
44-
4541
- uses: actions/upload-artifact@v4
4642
with:
4743
name: ${{ inputs.artifact-name }}-${{ matrix.pkg-name }}
48-
path: pypi
44+
path: dist
4945

5046
merge-artifacts:
5147
runs-on: ubuntu-22.04
@@ -54,11 +50,12 @@ jobs:
5450
with: # download all build artifacts
5551
pattern: ${{ inputs.artifact-name }}-*
5652
merge-multiple: true
57-
path: pypi
53+
path: dist
5854
- name: Keep artifact
5955
run: python -c "print('DAYS=' + str(5 if '${{ github.event_name }}'.startswith('pull_request') else 0))" >> $GITHUB_ENV
56+
- run: ls -lh dist/
6057
- uses: actions/upload-artifact@v4
6158
with:
6259
name: ${{ inputs.artifact-name }}
63-
path: pypi
60+
path: dist
6461
retention-days: ${{ env.DAYS }}

0 commit comments

Comments
 (0)