Skip to content

print version

print version #18

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.21
- uses: sigstore/[email protected]
- uses: anchore/sbom-action/[email protected]
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 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 --version
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"