Fix build on 32bit systems (#4557) #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
tags: | |
- v2.[0-9]+.[0-9]+ | |
# For testing the workflow before pushing a tag | |
# This will run goreleaser with --snapshot and test the | |
# SLSA generator. | |
workflow_dispatch: | |
permissions: | |
contents: read | |
name: release | |
jobs: | |
goreleaser: | |
outputs: | |
hashes: ${{ steps.hash.outputs.hashes }} | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5 | |
with: | |
check-latest: true | |
- name: Generate goreleaser args | |
id: args | |
run: | | |
set -euo pipefail | |
args='release --clean' | |
if [[ "$GITHUB_REF" != refs/tags/* ]]; then | |
args+=' --snapshot' | |
fi | |
echo "args=$args" >> $GITHUB_OUTPUT | |
- uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6 | |
id: run-goreleaser | |
with: | |
args: ${{ steps.args.outputs.args }} | |
distribution: goreleaser # or 'goreleaser-pro' | |
version: "~> v2" # or 'latest', 'nightly', semver | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Generate subject | |
id: hash | |
env: | |
ARTIFACTS: "${{ steps.run-goreleaser.outputs.artifacts }}" | |
run: | | |
set -euo pipefail | |
checksum_file=$(echo "$ARTIFACTS" | jq -r '.[] | select (.type=="Checksum") | .path') | |
echo "hashes=$(cat $checksum_file | base64 -w0)" >> $GITHUB_OUTPUT | |
provenance: | |
needs: [goreleaser] | |
permissions: | |
actions: read # To read the workflow path. | |
id-token: write # To sign the provenance. | |
contents: write # To add assets to a release. | |
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | |
with: | |
compile-generator: true # Workaround for https://github.com/slsa-framework/slsa-github-generator/issues/1163 | |
base64-subjects: "${{ needs.goreleaser.outputs.hashes }}" | |
upload-assets: ${{ github.event_name == 'push' }} # upload to a new release when pushing via tag |