Skip to content

Commit

Permalink
Added logic for manual ref
Browse files Browse the repository at this point in the history
  • Loading branch information
jmbarne3 committed Jun 26, 2024
1 parent d9437bf commit ef5f22b
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,13 @@ jobs:
name: Build and Deploy Job
steps:
- uses: actions/checkout@v3
if: "${{ github.event.inputs.manual_ref != '' }}"
with:
submodules: true
lfs: false
ref: "${{ github.event.inputs.manual_ref }}"
- uses: actions/checkout@v3
if: "${{ github.event.inputs.manual_ref == '' }}"
with:
submodules: true
lfs: false
Expand Down

0 comments on commit ef5f22b

Please sign in to comment.