Skip to content

Commit 22a69fb

Browse files
authored
Merge pull request #3004 from devspace-sh/DSP-143
disable upx
2 parents 17faf2e + 3243eb3 commit 22a69fb

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.github/workflows/release.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ jobs:
7676
uses: actions/download-artifact@v4
7777
with:
7878
name: ui-tar
79-
- name: install-upx
80-
run: brew install upx
8179
- name: Compile binaries
8280
run: ./hack/build-all.bash
8381
env:

hack/build-all.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ shasum -a 256 "${DEVSPACE_ROOT}/release/ui.tar.gz" > "${DEVSPACE_ROOT}/release/u
5757
# build devspace helper
5858
echo "Building devspace helper"
5959
GOARCH=amd64 GOOS=linux go build -ldflags "-s -w -X github.com/loft-sh/devspace/helper/cmd.version=${VERSION}" -o "${DEVSPACE_ROOT}/release/devspacehelper" helper/main.go
60-
upx "${DEVSPACE_ROOT}/release/devspacehelper" #compress devspacehelper
60+
# upx "${DEVSPACE_ROOT}/release/devspacehelper" #compress devspacehelper
6161
shasum -a 256 "${DEVSPACE_ROOT}/release/devspacehelper" > "${DEVSPACE_ROOT}/release/devspacehelper".sha256
6262

6363
GOARCH=arm64 GOOS=linux go build -ldflags "-s -w -X github.com/loft-sh/devspace/helper/cmd.version=${VERSION}" -o "${DEVSPACE_ROOT}/release/devspacehelper-arm64" helper/main.go

0 commit comments

Comments
 (0)