We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d212aab commit 4c5d16fCopy full SHA for 4c5d16f
.github/workflows/_build-packages.yml
@@ -43,16 +43,17 @@ jobs:
43
44
- uses: actions/upload-artifact@v4
45
with:
46
- name: ${{ inputs.artifact-name }}-${{ strategy.job-index }}
+ name: ${{ inputs.artifact-name }}-${{ matrix.pkg-name }}
47
path: pypi
48
retention-days: 1
49
50
merge-artifacts:
51
+ needs: build-packages
52
runs-on: ubuntu-22.04
53
steps:
54
- uses: actions/download-artifact@v4
55
with: # download all build artifacts
- pattern: ${{ inputs.artifact-name }}*
56
+ pattern: ${{ inputs.artifact-name }}-*
57
merge-multiple: true
58
- run: ls -lh pypi/
59
0 commit comments