Skip to content

Commit

Permalink
fix: remove flags
Browse files Browse the repository at this point in the history
  • Loading branch information
gregandcin committed Sep 25, 2024
1 parent b9bef82 commit a072358
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
libwayland-dev libxkbcommon-dev bc
- name: Build
run: go -ldflags "-s -w" build .
run: go build .

- name: Rename archive
run: zip -r Pinecone_linux.zip data Pinecone
Expand All @@ -52,7 +52,7 @@ jobs:
go-version: "^1.21.5"

- name: Build
run: GOOS=darwin GOARCH=amd64 go build -ldflags "-s -w" -o Pinecone.app
run: GOOS=darwin GOARCH=amd64 go build -o Pinecone.app

- name: Zip App
run: zip -vr Pinecone_macos_intel.zip data Pinecone.app -x "*.DS_Store"
Expand All @@ -77,7 +77,7 @@ jobs:
go-version: "^1.21.5"

- name: Build
run: GOOS=darwin GOARCH=arm64 go build -ldflags "-s -w" -o Pinecone.app
run: GOOS=darwin GOARCH=arm64 go build -o Pinecone.app

- name: Zip App
run: zip -vr Pinecone_macos_arm.zip data Pinecone.app -x "*.DS_Store"
Expand All @@ -102,7 +102,7 @@ jobs:
go-version: "^1.21.5"

- name: Build
run: go build -ldflags "-s -w" .
run: go build .

- name: Zip Binary
shell: pwsh
Expand Down

0 comments on commit a072358

Please sign in to comment.