Skip to content

Commit e2753fa

Browse files
committed
Fix docker enablement
1 parent 0dd0505 commit e2753fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/swift_package_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ jobs:
159159
# Docker build
160160
- name: Build / Test
161161
timeout-minutes: 60
162-
if: ${{ !inputs.enable_windows_docker }}
162+
if: ${{ inputs.enable_windows_docker }}
163163
run: |
164164
docker run -v ${{ github.workspace }}:C:\source -v $env:TEMP\test-script:C:\test-script ${{ steps.pull_docker_image.outputs.image }} powershell.exe -NoLogo -File C:\test-script\run.ps1
165165
# Docker-less build
166166
- name: Build / Test
167167
timeout-minutes: 60
168-
if: ${{ inputs.enable_windows_docker }}
168+
if: ${{ !inputs.enable_windows_docker }}
169169
run: powershell.exe -NoLogo -File $env:TEMP\test-script\run.ps1

0 commit comments

Comments
 (0)