25 lines
534 B
YAML
25 lines
534 B
YAML
|
pipeline:
|
||
|
|
||
|
build:
|
||
|
image: golang
|
||
|
commands:
|
||
|
- go get ecodash
|
||
|
- go build
|
||
|
|
||
|
docker-publish:
|
||
|
image: plugins/docker
|
||
|
settings:
|
||
|
repo: gitea.massivebox.net/massivebox/ecodash
|
||
|
tags: dev
|
||
|
username: massivebox
|
||
|
password: $${GITEA_PASSWORD}
|
||
|
secrets: [gitea_password]
|
||
|
|
||
|
gitea-publish:
|
||
|
image: plugins/gitea-release
|
||
|
settings:
|
||
|
base_url: https://gitea.massivebox.net
|
||
|
files: ecodash
|
||
|
api_key: $${GITEA_PASSWORD}
|
||
|
title: dev
|
||
|
secrets: [gitea_password]
|