CI: Generate Artifact Attestations for release artifacts

This commit is contained in:
Jack Grigg 2024-08-28 16:10:33 +00:00
parent 05f996c919
commit 9343af9324

View file

@ -11,6 +11,11 @@ on:
required: true
default: 'true'
permissions:
attestations: write
contents: write
id-token: write
jobs:
build:
name: Publish for ${{ matrix.name }}
@ -113,6 +118,11 @@ jobs:
shell: bash
if: matrix.name == 'windows'
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: 'release/rage/*'
- name: Upload archive as artifact
uses: actions/upload-artifact@v4
with:
@ -299,6 +309,11 @@ jobs:
- name: cargo deb
run: cargo deb --package rage --no-build --target ${{ matrix.target }} ${{ matrix.deb_flags }}
- name: Generate artifact attestation
uses: actions/attest-build-provenance@v1
with:
subject-path: 'target/${{ matrix.target }}/debian/*.deb'
- name: Upload Debian package as artifact
uses: actions/upload-artifact@v4
with: