Skip to content

Real Draft

Real Draft #24

Workflow file for this run

name: Release Binaries
permissions:
contents: write # needed to write releases
id-token: write # needed for keyless signing
packages: write # needed for ghcr access
on:
push:
# tags:
# - "v*"
jobs:
binary-release:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22.x"
cache: true
cache-dependency-path: |
**/go.sum
**/go.mod
- uses: sigstore/cosign-installer@v3.5.0
- uses: anchore/sbom-action/download-syft@v0.16.0
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: v1.2.0
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
# build Multi-platform docker images
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: '~> v2'
args: release --draft --clean --config .github/goreleaser.yaml --verbose
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"