Skip to content

Commit

Permalink
chore: add manual release input
Browse files Browse the repository at this point in the history
  • Loading branch information
joerdav committed Dec 31, 2024
1 parent 08137da commit 94e3238
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
tags:
- '*'
workflow_dispatch:
inputs:
tag:
description: 'select tag'
required: true
type: string

permissions:
contents: write
Expand All @@ -18,6 +23,13 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0

-
name: Checkout tag if provided
if: github.event.inputs.tag
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.tag }}
-
name: Set up Go
uses: actions/setup-go@v5
Expand Down

0 comments on commit 94e3238

Please sign in to comment.