Skip to content

Commit 112d2be

Browse files
committed
Build ARM binaries
1 parent 7a86e8e commit 112d2be

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build-release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Go fmt and build
2+
3+
on:
4+
- push
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- name: Build project
13+
run: >
14+
docker run -it --rm
15+
-v .:/go/src/github.com/virtuos/opencast-ca-display
16+
-w /go/src/github.com/virtuos/opencast-ca-display
17+
-e CGO_ENABLED=1
18+
docker.elastic.co/beats-dev/golang-crossbuild:1.23.6-arm
19+
--build-cmd "go build"
20+
-p linux/arm64
21+
22+
- run: ls -lh

0 commit comments

Comments
 (0)