Skip to content

Commit

Permalink
Build proper main file
Browse files Browse the repository at this point in the history
  • Loading branch information
bumi committed Jun 16, 2024
1 parent 9e8ace8 commit c5df092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_binaries.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
- name: Check out code
uses: actions/checkout@v2
- name: Build Binary for linux amd64
run: go build -o lndhub-${{github.event.release.tag_name}}-linux-x86_64
run: go build cmd/server/main.go -o lndhub-${{github.event.release.tag_name}}-linux-x86_64
- name: Build Binary for linux arm v7
run: GOOS=linux GOARCH=arm GOARM=7 go build -o lndhub-${{github.event.release.tag_name}}-linux-arm_v7
run: GOOS=linux GOARCH=arm GOARM=7 go build cmd/server/main.go -o lndhub-${{github.event.release.tag_name}}-linux-arm_v7
- name: Upload amd64 binary to release assets
uses: actions/upload-release-asset@v1.0.1
env:
Expand Down

0 comments on commit c5df092

Please sign in to comment.