Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Sachs <898627+asachs01@users.noreply.github.com>
  • Loading branch information
asachs01 committed Sep 5, 2024
1 parent 0d6207b commit 474c11c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
push:
tags:
- 'v*'
workflow_dispatch:
inputs:
version:
description: 'Version number for this release (e.g., v1.0.0)'
required: true
default: 'v1.0.0'

jobs:
release:
Expand Down Expand Up @@ -32,8 +38,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ github.event.inputs.version || github.ref }}
release_name: Release ${{ github.event.inputs.version || github.ref }}
draft: false
prerelease: false

Expand Down

0 comments on commit 474c11c

Please sign in to comment.