*: Fix backwards logic for test -short

This commit is contained in:
diamondburned 2023-11-04 05:05:49 -07:00
parent 040622f494
commit 3bc5ae3f3c
No known key found for this signature in database
GPG Key ID: D78C4471CE776659
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ jobs:
env:
TEST_FLAGS: >-
-v=${{ runner.debug && '1' || '0' }}
-short=${{ (github.event-name == 'workflow_dispatch' || github.event.inputs.short-integration-tests) && '1' || '0' }}
-short=${{ (github.event-name == 'workflow_dispatch' && !github.event.inputs.short-integration-tests) && '0' || '1' }}
CHANNEL_ID: ${{ secrets.CHANNEL_ID }}
GUILD_ID: ${{ secrets.GUILD_ID }}
VOICE_ID: ${{ secrets.VOICE_ID }}