From bee4b3513db6117775a79fb7893228f85f297d69 Mon Sep 17 00:00:00 2001 From: Balint Molnar Date: Tue, 25 Jun 2024 16:54:09 +0200 Subject: [PATCH] Fix attestiation job by providing both artifacts (#235) --- .github/workflows/release.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fd4ad947..b5c1facf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,18 +29,15 @@ jobs: - name: Test camblet-driver Debian package run: sudo apt install -y ../camblet-driver_${{github.ref_name}}_all.deb - - name: Generate artifact attestation for deb package - uses: actions/attest-build-provenance@v1 - with: - subject-path: '../camblet-driver_*.deb' - - name: Build camblet-driver RedHat package run: make rpm with: subject-path: 'rpmbuild/RPMS/noarch/camblet-driver-*.rpm' - - name: Generate artifact attestation for rpm package + - name: Generate artifact attestation for deb and rpm packages uses: actions/attest-build-provenance@v1 + with: + subject-path: '../camblet-driver_*.deb, rpmbuild/RPMS/noarch/camblet-driver-*.rpm' - name: Release uses: ncipollo/release-action@v1