Support GH Token in binary attestation step (pt2)

This commit is contained in:
ZeldaZach 2025-06-29 23:19:22 -04:00
parent c216677e1e
commit 51f978ac72
No known key found for this signature in database

View file

@ -216,6 +216,8 @@ jobs:
- name: Verify binary attestation - name: Verify binary attestation
if: steps.attestation.outcome == 'success' if: steps.attestation.outcome == 'success'
shell: bash shell: bash
env:
GH_TOKEN: ${{github.token}}
run: gh attestation verify ${{steps.build.outputs.path}} -R Cockatrice/Cockatrice run: gh attestation verify ${{steps.build.outputs.path}} -R Cockatrice/Cockatrice
build-macos: build-macos:
@ -381,6 +383,8 @@ jobs:
- name: Verify binary attestation - name: Verify binary attestation
if: steps.attestation.outcome == 'success' if: steps.attestation.outcome == 'success'
shell: bash shell: bash
env:
GH_TOKEN: ${{github.token}}
run: gh attestation verify ${{steps.build.outputs.path}} -R Cockatrice/Cockatrice run: gh attestation verify ${{steps.build.outputs.path}} -R Cockatrice/Cockatrice
build-windows: build-windows: