Skip to content

Commit

Permalink
fixed go call
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsgrill committed Oct 16, 2024
1 parent a0388d6 commit bfad58a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
env:
GOOS: "linux"
GOARCH: "amd64"
run: go build -o potatodrive-proxy-amd64 -X 'main.Version=${{ env.VERSION }}' ./cmd/proxy
run: go build -o potatodrive-proxy-amd64 -ldflags="-X 'main.Version=${{ env.VERSION }}'" ./cmd/proxy
- uses: actions/upload-artifact@v4
with:
name: potatodrive-proxy-amd64
Expand All @@ -100,7 +100,7 @@ jobs:
GOOS: "linux"
GOARCH: "arm"
GOARM: "5"
run: go build -o potatodrive-proxy-armhf -X 'main.Version=${{ env.VERSION }}' ./cmd/proxy
run: go build -o potatodrive-proxy-armhf -ldflags="-X 'main.Version=${{ env.VERSION }}'" ./cmd/proxy
- uses: actions/upload-artifact@v4
with:
name: potatodrive-proxy-armhf
Expand Down

0 comments on commit bfad58a

Please sign in to comment.