Skip to content

Commit a922661

Browse files
author
Ben
committed
Update build steps to emit binary
1 parent 7b25d7a commit a922661

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,8 @@ jobs:
1717
uses: actions/setup-go@v4
1818
with:
1919
go-version: 1.22
20-
21-
- name: Build
22-
run: go build -v ./...
23-
2420
- name: Test
2521
run: go test -v ./...
22+
23+
- name: Build
24+
run: go build -v

.github/workflows/release-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
uses: actions/setup-go@v4
2121
with:
2222
go-version: 1.22
23-
- name: Build
24-
run: go build -v ./...
2523
- name: Test
2624
run: go test -v ./...
25+
- name: Build
26+
run: go build -v
2727
- name: Setup BuildX
2828
uses: docker/setup-buildx-action@v3
2929
- name: Login to registy ${{ env.REGISTRY }}

0 commit comments

Comments
 (0)