Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Commit

Permalink
fix(ci): Avoid overwriting env on Windows (#3139)
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivshah3 committed Nov 28, 2020
1 parent ba773d1 commit 24947e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_desktop.yml
Expand Up @@ -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
Expand Down

0 comments on commit 24947e4

Please sign in to comment.