protgen/.gitea/workflows/build.yaml
simon ae2879de41
Some checks failed
ProtoGen Action Runner / build (push) Failing after 56s
Fixed Branchname
2025-05-19 21:21:36 +02:00

34 lines
616 B
YAML

name: ProtoGen Action Runner
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
container:
image: golang:1.23
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
- name: Build Codegen Binary
run: |
make build
mkdir -p dist
mv alox.protogen dist/
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: alox-protogen
path: dist/alox.protogen