Skip to content
This repository was archived by the owner on Dec 11, 2024. It is now read-only.

Commit e8a583c

Browse files
committed
chore(): added default build for main
1 parent 572f9e6 commit e8a583c

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/build_main.yaml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Create release
2+
on:
3+
push:
4+
branches:
5+
- main
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
13+
- name: Set up Go
14+
uses: actions/setup-go@v4
15+
with:
16+
go-version: '1.21.3'
17+
18+
- name: "Install deps"
19+
run: go mod tidy
20+
21+
- name: "Build binary"
22+
run: go build -tags dynamic

0 commit comments

Comments
 (0)