Release #6
This file contains hidden or 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
| name: Release | |
| on: | |
| workflow_dispatch: | |
| permissions: {} | |
| jobs: | |
| release: | |
| name: Build & Draft Release | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| id-token: write | |
| attestations: write | |
| steps: | |
| - name: Harden the runner (Audit all outbound calls) | |
| uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1 | |
| with: | |
| egress-policy: audit | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Extract version from source | |
| id: version | |
| run: | | |
| version=$(grep -m1 'Version.*=' internal/buildinfo/version.go | sed 's/.*"\(.*\)".*/\1/') | |
| if [ -z "$version" ]; then | |
| echo "::error::Could not extract Version from internal/buildinfo/version.go" | |
| exit 1 | |
| fi | |
| tag="v${version}" | |
| echo "version=${version}" >> "$GITHUB_OUTPUT" | |
| echo "tag=${tag}" >> "$GITHUB_OUTPUT" | |
| - name: Check tag does not already exist | |
| run: | | |
| if git rev-parse "refs/tags/${{ steps.version.outputs.tag }}" >/dev/null 2>&1; then | |
| echo "::error::Tag ${{ steps.version.outputs.tag }} already exists." | |
| exit 1 | |
| fi | |
| - name: Create tag | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git tag -a "${{ steps.version.outputs.tag }}" -m "Release ${{ steps.version.outputs.tag }}" | |
| git push origin "${{ steps.version.outputs.tag }}" | |
| - name: Set up Go | |
| uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0 | |
| with: | |
| distribution: goreleaser | |
| version: latest | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install cosign | |
| uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0 | |
| - name: Locate binary | |
| id: binary | |
| run: | | |
| BINARY=$(find dist -type f -name '*darwin_unnotarized' | head -1) | |
| if [ -z "$BINARY" ] || [ ! -f "$BINARY" ]; then | |
| echo "::error::Binary not found" | |
| find dist -type f | |
| exit 1 | |
| fi | |
| echo "path=$BINARY" >> "$GITHUB_OUTPUT" | |
| - name: Sign artifacts with Sigstore | |
| run: | | |
| cosign sign-blob "${{ steps.binary.outputs.path }}" \ | |
| --bundle "${{ steps.binary.outputs.path }}.bundle" --yes | |
| cosign sign-blob stepsecurity-dev-machine-guard.sh \ | |
| --bundle dist/stepsecurity-dev-machine-guard.sh.bundle --yes | |
| - name: Upload cosign bundles | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release upload "${{ steps.version.outputs.tag }}" \ | |
| "${{ steps.binary.outputs.path }}.bundle" \ | |
| dist/stepsecurity-dev-machine-guard.sh.bundle \ | |
| --clobber | |
| - name: Attest build provenance | |
| uses: actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1.0 | |
| with: | |
| subject-path: | | |
| ${{ steps.binary.outputs.path }} | |
| stepsecurity-dev-machine-guard.sh |