Skip to content

client: better error message for unsupported content type #55

client: better error message for unsupported content type

client: better error message for unsupported content type #55

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
# HINT(lukasmalkmus): Make sure release jobs are only ever run once at a time
# (and are never cancelled when new jobs for the same group are queued).
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: echo "GORELEASER_VERSION=$(go list -m -f '{{.Version}}' github.com/goreleaser/goreleaser)" >> $GITHUB_ENV
- uses: goreleaser/goreleaser-action@v6
with:
version: ${{ env.GORELEASER_VERSION }}
args: release
env:
GITHUB_TOKEN: ${{ github.token }}