mirror of
https://github.com/str4d/rage.git
synced 2025-04-04 03:17:42 +03:00
CI: Generate Artifact Attestations for release artifacts
This commit is contained in:
parent
05f996c919
commit
9343af9324
1 changed files with 15 additions and 0 deletions
15
.github/workflows/release.yml
vendored
15
.github/workflows/release.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue