Added build cli

This commit is contained in:
simon 2025-05-19 21:13:11 +02:00
parent 014186b65a
commit a887d76dd9
2 changed files with 12 additions and 1 deletions

11
.gitea-ci.yml Normal file
View File

@ -0,0 +1,11 @@
pipeline:
build:
image: golang:1.23
commands:
- make build
- mkdir -p dist
- mv alox.protogen dist/
artifacts:
paths:
- dist/alox.protogen

View File

@ -1,7 +1,7 @@
.PHONY: build build_win clean .PHONY: build build_win clean
build: build:
go build . GOOS=linux go build .
build_win: build_win:
GOOS=windows go build . GOOS=windows go build .