-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,9 @@ jobs: | |
- name: Check out code | ||
uses: actions/checkout@v2 | ||
- name: Build Binary for linux amd64 | ||
run: go build cmd/server/main.go -o lndhub-${{github.event.release.tag_name}}-linux-x86_64 | ||
run: go build -o lndhub-${{github.event.release.tag_name}}-linux-x86_64 cmd/server/main.go | ||
- name: Build Binary for 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 | ||
run: GOOS=linux GOARCH=arm GOARM=7 go build -o lndhub-${{github.event.release.tag_name}}-linux-arm_v7 cmd/server/main.go | ||
- name: Upload amd64 binary to release assets | ||
uses: actions/[email protected] | ||
env: | ||
|