We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1414203 commit 15680b7Copy full SHA for 15680b7
‎.github/workflows/Action-Test.yml
@@ -7,6 +7,7 @@ on:
7
inputs:
8
Prerelease:
9
description: Run the action in prerelease mode
10
+ type: boolean
11
required: false
12
default: false
13
pull_request:
@@ -31,4 +32,4 @@ jobs:
31
32
os: [ubuntu-latest, macos-latest, windows-latest]
33
with:
34
runs-on: ${{ matrix.os }}
- Prerelease: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.Prerelease || false }}
35
+ Prerelease: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.Prerelease }}
0 commit comments