2024-04-24 16:42:01 +02:00
|
|
|
name: Build
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
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@v3
|
|
|
|
with:
|
2024-04-26 11:02:59 +02:00
|
|
|
name: mystrom-exporter.zip
|
2024-04-24 16:42:01 +02:00
|
|
|
path: output/mystrom-exporter
|
|
|
|
overwrite: true
|