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 8b6cb9c commit 00c12aaCopy full SHA for 00c12aa
.github/workflows/release-electron.yml
@@ -31,21 +31,24 @@ jobs:
31
- name: Zip the build (Linux)
32
run: |
33
ZIP_NAME="linux.zip"
34
- zip -r "$ZIP_NAME" out-desktop
+ cd out-desktop
35
+ zip -r "../$ZIP_NAME" .
36
shell: bash
37
if: runner.os == 'Linux'
38
39
- name: Zip the build (Windows)
40
41
$ZIP_NAME = "windows-x64.zip"
- Compress-Archive -Path out-desktop -DestinationPath $ZIP_NAME
42
43
+ Compress-Archive -Path . -DestinationPath "../$ZIP_NAME" -Force
44
shell: pwsh
45
if: runner.os == 'Windows'
46
47
- name: Zip the build (macOS)
48
49
ZIP_NAME="macos.zip"
50
51
52
53
if: runner.os == 'macOS'
54
0 commit comments