We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4b332b commit 701d8afCopy full SHA for 701d8af
1 file changed
.github/workflows/duckdb-extensions.yaml
@@ -60,12 +60,16 @@ jobs:
60
attestations: write
61
steps:
62
- uses: actions/download-artifact@v7
63
+ with:
64
+ pattern: duckdb-extensions-*
65
+ path: dist
66
+ merge-multiple: true
67
- name: Generate artifact attestation
68
uses: actions/attest-build-provenance@v3
69
with:
- subject-path: "duckdb-extensions-*/*"
70
+ subject-path: "dist/*"
71
- name: Publish to PyPI
72
if: ${{ startsWith(github.ref, 'refs/tags/') }}
73
uses: pypa/gh-action-pypi-publish@release/v1
74
- packages-dir: duckdb-extensions-*/
75
+ packages-dir: dist/
0 commit comments