Skip to content

Commit 240b16f

Browse files
committed
(gha) Fix acceptance.yaml openvox-release negation
Boolean values are tricky in github actions. actions/runner#1483 ! gtihub.event.inputs.pre-release-build always set openvox-released to false, as though ! coerced pre-release-build to a string and then return false since a string is truthy, perhaps.
1 parent 73a76d0 commit 240b16f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/acceptance.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
install-openvox: true
6767
openvox-version: ${{ github.event.inputs.version }}
6868
openvox-collection: ${{ github.event.inputs.collection }}
69-
openvox-released: ${{ ! github.event.inputs.pre-release-build }}
69+
openvox-released: ${{ github.event.inputs.pre-release-build == 'false' }}
7070
openvox-artifacts-url: ${{ github.event.inputs.artifacts-url }}
7171
vms: |-
7272
[

0 commit comments

Comments
 (0)