Skip to content

Commit b15443f

Browse files
petemsclaude
andcommitted
feat: make release workflow automatic on tag push
- Remove workflow_dispatch trigger for manual releases - Update Go version from 1.23 to 1.24 to match project version - Workflow now triggers automatically when version tags (v*) are pushed 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent afcdf7e commit b15443f

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,13 @@ on:
1515
push:
1616
tags:
1717
- 'v*'
18-
workflow_dispatch:
19-
inputs:
20-
tag:
21-
description: 'Tag to release (e.g., v1.0.0)'
22-
required: true
2318

2419
concurrency:
2520
group: ${{ github.workflow }}-${{ github.ref }}
2621
cancel-in-progress: false
2722

2823
env:
29-
GO_VERSION: '1.23'
24+
GO_VERSION: '1.24'
3025

3126
jobs:
3227
goreleaser:

0 commit comments

Comments
 (0)