25 lines
629 B
YAML
25 lines
629 B
YAML
---
|
|
platform: linux/arm64
|
|
|
|
pipeline:
|
|
build:
|
|
image: golang
|
|
environment:
|
|
- GOOS=linux
|
|
- GOARCH=amd64
|
|
commands:
|
|
- go build -ldflags "-s -w -X main.version=${CI_COMMIT_TAG}" -trimpath -o release/ubnt-freifunk-map-api .
|
|
|
|
docker:
|
|
image: woodpeckerci/plugin-docker-buildx
|
|
settings:
|
|
platforms: linux/amd64
|
|
registry: git.freifunk-rhein-sieg.net
|
|
repo: git.freifunk-rhein-sieg.net/freifunk-troisdorf/ubnt-freifunk-map-api
|
|
username:
|
|
from_secret: gitea_user
|
|
password:
|
|
from_secret: gitea_token
|
|
tags: ${CI_COMMIT_TAG}
|
|
when:
|
|
- branch: master |