Skip to content

Commit c8b2c80

Browse files
committed
Fix docker enablement
1 parent 4790024 commit c8b2c80

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
@@ -163,11 +163,11 @@ jobs:
163163
# Docker build
164164
- name: Build / Test
165165
timeout-minutes: 60
166-
if: ${{ !inputs.enable_windows_docker }}
166+
if: ${{ inputs.enable_windows_docker }}
167167
run: |
168168
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
169169
# Docker-less build
170170
- name: Build / Test
171171
timeout-minutes: 60
172-
if: ${{ inputs.enable_windows_docker }}
172+
if: ${{ !inputs.enable_windows_docker }}
173173
run: powershell.exe -NoLogo -File $env:TEMP\test-script\run.ps1

0 commit comments

Comments
 (0)