-
Notifications
You must be signed in to change notification settings - Fork 23
41 lines (41 loc) · 1.57 KB
/
build_binaries.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Build and publish binaries
on:
release:
types: [published]
jobs:
build:
name: Build and publish binaries
strategy:
matrix:
go-version: [ 1.20.x ]
platform: [ ubuntu-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- 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 cmd/server/main.go
- 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 cmd/server/main.go
- name: Upload amd64 binary to release assets
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./lndhub-${{github.event.release.tag_name}}-linux-x86_64
asset_name: lndhub-${{github.event.release.tag_name}}-linux-x86_64
asset_content_type: binary/octet-stream
- name: Upload armv7 binary to release assets
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./lndhub-${{github.event.release.tag_name}}-linux-arm_v7
asset_name: lndhub-${{github.event.release.tag_name}}-linux-arm_v7
asset_content_type: binary/octet-stream