From 24947e4904c0b85d0b6964b840bc5b0b56d5357c Mon Sep 17 00:00:00 2001 From: Rajiv Shah Date: Fri, 27 Nov 2020 23:17:44 -0500 Subject: [PATCH] fix(ci): Avoid overwriting env on Windows (#3139) --- .github/workflows/build_desktop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_desktop.yml b/.github/workflows/build_desktop.yml index dd6ebb891d..29e4db52d6 100644 --- a/.github/workflows/build_desktop.yml +++ b/.github/workflows/build_desktop.yml @@ -75,7 +75,7 @@ jobs: if: matrix.os == 'ubuntu-18.04' || matrix.os == 'macos-10.15' && github.event.inputs.debugElectronBuilder && github.event.inputs.debugElectronBuilder == 'true' - name: Enable verbose output for electron-builder - Windows - run: echo "DEBUG=electron-builder" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 + run: echo "DEBUG=electron-builder" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append if: matrix.os == 'windows-2019' && github.event.inputs.debugElectronBuilder && github.event.inputs.debugElectronBuilder == 'true' - name: Install desktop dependencies