Skip to content

Commit 26b7f28

Browse files
committed
fix build pipeline
1 parent b4fce2a commit 26b7f28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/electron_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
push:
88
tags:
99
- 'v[0-9]+.[0-9]+.[0-9]+'
10-
10+
1111
jobs:
1212
build:
1313
runs-on: ${{ matrix.os }}
@@ -45,11 +45,11 @@ jobs:
4545
- name: Compress binary (Linux)
4646
if: runner.os == 'Linux'
4747
run: |
48-
zip -r helm-cli-helper-linux.zip out/*
48+
cd out && zip -r ../helm-cli-helper-linux.zip *
4949
- name: Compress binary (macOS)
5050
if: runner.os == 'macOS'
5151
run: |
52-
zip -r helm-cli-helper-mac.zip out/*
52+
cd out && zip -r ../helm-cli-helper-mac.zip *
5353
- name: Release
5454
uses: softprops/action-gh-release@v2.0.4
5555
with:

0 commit comments

Comments
 (0)