Skip to content

Commit 3c5c79e

Browse files
🩹 [Patch]: Update Action-Test workflow to conditionally set Prerelease input based on event type
1 parent 8bef736 commit 3c5c79e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ā€Ž.github/workflows/Action-Test.ymlā€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
os: [ubuntu-latest, macos-latest, windows-latest]
3232
with:
3333
runs-on: ${{ matrix.os }}
34-
Prerelease: ${{ inputs.Prerelease }}
34+
Prerelease: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.Prerelease || 'false' }}

0 commit comments

Comments
Ā (0)