diff --git a/.github/workflows/golang-test-windows.yml b/.github/workflows/golang-test-windows.yml index 21a8e7ed5..47611bed8 100644 --- a/.github/workflows/golang-test-windows.yml +++ b/.github/workflows/golang-test-windows.yml @@ -40,9 +40,11 @@ jobs: - name: Install sysinternals run: choco install -y --no-progress sysinternals - - name: Generate Iface Test bin - run: go test -c -o iface-testing.bin ./iface/ - name: accept eula run: PsExec64 -accepteula -s ipconfig + - name: Generate Iface Test bin + run: go test -c -o iface-testing.bin ./iface/ - name: Test - run: PsExec64 -s .\iface-testing.bin \ No newline at end of file + run: | + mv iface-testing.bin 'C:\Windows\temp\' + PsExec64 -s 'C:\Windows\temp\iface-testing.bin.exe' \ No newline at end of file