We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf864c8 commit 27f319dCopy full SHA for 27f319d
.github/workflows/build-upload.yml
@@ -130,6 +130,20 @@ jobs:
130
${{ runner.temp }}/**/*.conda
131
${{ runner.temp }}/**/*.sig
132
133
+ - name: Kill any lingering processes (Windows)
134
+ if: runner.os == 'Windows'
135
+ shell: powershell
136
+ run: |
137
+ # Kill any Python processes
138
+ Get-Process python* -ErrorAction SilentlyContinue | Stop-Process -Force
139
+
140
+ # Kill any processes from the pixi environment
141
+ $pixiPath = "${{ github.workspace }}\.pixi\envs\build\bin"
142
+ Get-Process | Where-Object { $_.Path -like "$pixiPath*" } | Stop-Process -Force
143
144
+ # Wait a moment for handles to be released
145
+ Start-Sleep -Seconds 2
146
147
aggregate:
148
needs: build
149
runs-on: ubuntu-latest
0 commit comments