diff --git a/.github/workflows/cross.yml b/.github/workflows/cross.yml index 54fb4a6..20253be 100644 --- a/.github/workflows/cross.yml +++ b/.github/workflows/cross.yml @@ -77,11 +77,6 @@ jobs: name: plugin path: lib*.dll - - name: attest - uses: actions/attest-build-provenance@v1 - with: - subject-path: lib*.dll - - name: release if: ${{ !env.ACT }} uses: ncipollo/release-action@v1 @@ -91,3 +86,9 @@ jobs: name: Nightly ${{ github.sha }} allowUpdates: true makeLatest: true + + - name: attest + if: ${{ !env.ACT }} + uses: actions/attest-build-provenance@v1 + with: + subject-path: lib*.dll diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index bf4f624..b885ccb 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -31,11 +31,6 @@ jobs: name: plugin path: lib*.so - - name: attest - uses: actions/attest-build-provenance@v1 - with: - subject-path: lib*.so - - name: release if: ${{ !env.ACT }} uses: ncipollo/release-action@v1 @@ -44,4 +39,10 @@ jobs: tag: nightly-${{ github.sha }} name: Nightly ${{ github.sha }} allowUpdates: true - makeLatest: true \ No newline at end of file + makeLatest: true + + - name: attest + if: ${{ !env.ACT }} + uses: actions/attest-build-provenance@v1 + with: + subject-path: lib*.so \ No newline at end of file