Skip to content

Commit

Permalink
feat: configure checked out ref
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Laprun <[email protected]>
  • Loading branch information
metacosm committed Oct 29, 2024
1 parent ab88f33 commit 4f2836f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release-perform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
tag:
description: 'Tag to release'
required: true
ref:
description: 'Branch or tag to deploy'
type: string
required: false
dry_run:
description: 'Dry run the release'
required: false
Expand Down Expand Up @@ -47,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
ref: ${{github.ref}}
ref: ${{inputs.ref || github.ref}}

- name: Gather versions
id: versions
Expand Down

0 comments on commit 4f2836f

Please sign in to comment.