Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
runs-on: ubuntu-24.04
needs:
- release
permissions:
contents: write
id-token: write
attestations: write
strategy:
max-parallel: 42
matrix:
Expand All @@ -37,6 +41,10 @@ jobs:
env:
GOOS: ${{ matrix.GOOS }}
GOARCH: ${{ matrix.GOARCH }}
- name: Generate signed build provenance attestations
uses: actions/attest-build-provenance@v2
with:
subject-path: 'templatefile-${{ github.ref_name }}-${{ matrix.GOOS }}-${{ matrix.GOARCH }}.tar.xz'
- name: Upload build artifact
run: .github/scripts/upload-artifacts
env:
Expand Down
Loading