ci: skip windows release checksums and sigstore bundles

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2026-07-28 11:55:53 +02:00
parent 44c2e31f8d
commit ee824c7dd8
+2 -2
View File
@@ -336,7 +336,7 @@ jobs:
mv "provenance.json" "${filename}.provenance.json" mv "provenance.json" "${filename}.provenance.json"
mv "sbom-binaries.spdx.json" "${filename}.sbom.json" mv "sbom-binaries.spdx.json" "${filename}.sbom.json"
find . -name 'sbom*.json' -exec rm {} \; find . -name 'sbom*.json' -exec rm {} \;
if [[ "$binname" == *darwin* ]]; then if [[ "$binname" == *darwin* ]] || [[ "$binname" == *windows* ]]; then
rm -f "provenance.sigstore.json" rm -f "provenance.sigstore.json"
elif [ -f "provenance.sigstore.json" ]; then elif [ -f "provenance.sigstore.json" ]; then
mv "provenance.sigstore.json" "${filename}.sigstore.json" mv "provenance.sigstore.json" "${filename}.sigstore.json"
@@ -350,7 +350,7 @@ jobs:
working-directory: ${{ env.DESTDIR }} working-directory: ${{ env.DESTDIR }}
run: | run: |
sha256sum -b buildx-* > ./checksums.txt sha256sum -b buildx-* > ./checksums.txt
sed -i '/darwin/d' ./checksums.txt sed -i -e '/darwin/d' -e '/windows/d' ./checksums.txt
sha256sum -c --strict checksums.txt sha256sum -c --strict checksums.txt
- -
name: List artifacts name: List artifacts