Skip to content

Commit

Permalink
Update workflow to allow for manual trigger for a specific release tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
brannon committed Aug 28, 2024
1 parent cd3c177 commit 714b359
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ on:
push:
tags:
- "v*"
workflow_dispatch:
inputs:
release_tag:
description: "Release tag"
required: true

permissions:
contents: write

Expand All @@ -14,3 +20,4 @@ jobs:
- uses: cli/gh-extension-precompile@v1
with:
go_version: "1.22"
release_tag: ${{ github.event.inputs.release_tag || '' }}

0 comments on commit 714b359

Please sign in to comment.