Skip to content

Commit 7dace1a

Browse files
CopilotHackingGate
andcommitted
Remove redundant empty check for OS input
Co-authored-by: HackingGate <8541644+HackingGate@users.noreply.github.com>
1 parent d11f925 commit 7dace1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/test_typst_out_action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo "Manual workflow dispatch detected"
7474
7575
# Handle OS selection
76-
if [ "${{ github.event.inputs.os }}" == "all" ] || [ -z "${{ github.event.inputs.os }}" ]; then
76+
if [ "${{ github.event.inputs.os }}" == "all" ]; then
7777
echo 'os-matrix=["ubuntu-latest", "macos-latest", "windows-latest"]' >> $GITHUB_OUTPUT
7878
else
7979
echo 'os-matrix=["${{ github.event.inputs.os }}"]' >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)