Skip to content

Release

Release #1

Workflow file for this run

name: Release
on:
workflow_dispatch:
inputs:
version:
description: Semantic version to release (e.g. v1.0.4)
required: true
type: string
permissions:
contents: write
concurrency:
group: release
jobs:
release:
runs-on: ubuntu-latest
env:
GOPRIVATE: go.tracewayapp.com
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Configure git
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config push.default current
- name: Release
env:
VERSION: ${{ inputs.version }}
run: ./scripts/release-go-client.sh "$VERSION"