ubnt-freifunk-map-api/.drone.yml

61 lines
1.6 KiB
YAML
Raw Normal View History

2021-01-01 14:14:03 +00:00
kind: pipeline
2021-01-02 18:04:11 +00:00
type: docker
name: build go
2021-01-01 14:14:03 +00:00
steps:
2021-01-02 18:04:11 +00:00
- name: build linux/amd64
image: golang
commands:
- go build -ldflags "-X main.version=${DRONE_TAG}" -o release/linux/amd64/ubnt-freifunk-map-api .
- tar -cvzf release/ubnt-freifunk-map-api_linux_amd64.tar.gz -C release/linux/amd64 ubnt-freifunk-map-api
environment:
GOARCH: amd64
GOOS: linux
- name: build linux/arm64
image: golang
commands:
- go build -ldflags "-X main.version=${DRONE_TAG}" -o release/linux/arm64/ubnt-freifunk-map-api .
- tar -cvzf release/ubnt-freifunk-map-api_linux_arm64.tar.gz -C release/linux/arm64 ubnt-freifunk-map-api
environment:
GOARCH: arm64
GOOS: linux
- name: build windows
2021-01-01 14:14:03 +00:00
image: golang
commands:
2021-01-02 18:04:11 +00:00
- go build -ldflags "-X main.version=${DRONE_TAG}" -o release/windows/amd64/ubnt-freifunk-map-api .
- tar -cvzf release/ubnt-freifunk-map-api_windows_amd64.tar.gz -C release/windows/amd64 ubnt-freifunk-map-api
environment:
GOARCH: amd64
GOOS: windows
2021-01-01 14:14:03 +00:00
- name: docker
image: plugins/docker
settings:
repo: fftdf/ffmap-ubnt-api
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
event: tag
- name: gitea_release
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_api_key
base_url: https://git.freifunk-rhein-sieg.net
files:
2021-01-02 18:04:11 +00:00
- release/*.tar.gz
2021-01-02 18:09:35 +00:00
title: TEST
2021-01-01 14:14:03 +00:00
checksum:
- md5
- sha1
- sha256
- sha512
- adler32
- crc32
when:
event: tag