From 4c49d93bad0b2e197080343dd41fa50e69611b74 Mon Sep 17 00:00:00 2001 From: Nathaniel Saxe Date: Fri, 23 Aug 2024 17:50:56 -0400 Subject: [PATCH] put them back --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 010f8c1..d00a14b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,8 +36,8 @@ jobs: env GOOS=linux GOARCH=amd64 go build -o bin/runpodctl-linux-amd64 . env GOOS=linux GOARCH=arm64 go build -o bin/runpodctl-linux-arm64 . env GOOS=windows GOARCH=amd64 go build -o bin/runpodctl-windows-amd64.exe . - # strip bin/* || true # strip the binary's DWARF debug info, where applicable - # ./tools/upx --best bin/* || true # compress the binaries + strip bin/* || true # strip the binary's DWARF debug info, where applicable + ./tools/upx --best bin/* || true # compress the binaries - name: upload linux amd64 release binary uses: actions/upload-release-asset@v1.0.2