Use gitea actions to build releases
Some checks failed
Build / quality (push) Has been cancelled

This commit is contained in:
Timothée Floure 2024-04-24 16:42:01 +02:00
parent 9c58b4a7d5
commit a9a3bd1683
Signed by: tfloure
GPG key ID: 4502C902C00A1E12

View file

@ -0,0 +1,22 @@
name: Build
on:
push:
branches:
- main
jobs:
quality:
runs-on: alpine-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
apk add go make
export GOPATH=/tmp/go
export PATH=$PATH:$GOPATH/bin
make build
- uses: actions/upload-artifact@v4
with:
name: mystrom-exporter
path: output/mystrom-exporter
overwrite: true