Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lil5 committed Dec 19, 2024
1 parent 8783ec9 commit 84948fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: test -z "$(gofmt -l .)"
# Build the Go application
- name: Build the application
run: go build -o tigerbeetle_api .
run: go generate ./... && go build -o tigerbeetle_api .
build-and-publish:
runs-on: ubuntu-latest
needs: lint
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@ start:

.PHONY: build
build:
go generate ./...
go build .

buildexec:
go build .
make build
./tigerbeetle_api

release: release-darwin-arm64 release-darwin-arm64 release-linux-amd64 release-linux-arm64
Expand Down

0 comments on commit 84948fc

Please sign in to comment.