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 935edae commit c90cd00Copy full SHA for c90cd00
.github/workflows/release.yml
@@ -47,10 +47,19 @@ jobs:
47
- name: Generate artifact attestation
48
uses: actions/attest-build-provenance@v3
49
with:
50
- subject-path: "wheels-*/*"
+ subject-path: |
51
+ wheels-*/*
52
+ binary-*/*
53
54
- name: Publish to PyPI
55
uses: PyO3/maturin-action@86b9d133d34bc1b40018696f782949dac11bd380
56
57
command: upload
58
args: --non-interactive --skip-existing wheels-*/*
59
+
60
+ - name: Upload release assets to GitHub
61
+ env:
62
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
63
+ TAG_NAME: ${{ github.ref_name }}
64
+ run: |
65
+ gh release upload "${TAG_NAME}" binary-*/*
0 commit comments