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 d9e0575 commit 3b96e99Copy full SHA for 3b96e99
.github/workflows/python-release.yml
@@ -80,6 +80,24 @@ jobs:
80
if: startsWith(matrix.os, 'ubuntu')
81
run: ls -lah dist/* && cp dist/* svn_wheelhouse/
82
83
+ - name: Generate SHA512 checksums
84
+ if: startsWith(matrix.os, 'ubuntu')
85
+ run: |
86
+ cd svn_wheelhouse
87
+ for name in $(ls pyiceberg-*.whl pyiceberg-*.tar.gz)
88
+ do
89
+ shasum -a 512 "${name}" > "${name}.sha512"
90
+ done
91
+
92
+ - name: Generate GPG signatures
93
94
95
96
97
98
+ gpg --yes --armor --output "${name}.asc" --detach-sig "${name}"
99
100
101
- uses: actions/upload-artifact@v4
102
with:
103
name: "release-svn-${{ matrix.os }}"
0 commit comments