mirror of
https://gitea.massivebox.net/massivebox/ecodash.git
synced 2024-11-19 02:19:24 +01:00
9023806d57
- Upload artifacts as ZIP including templates - Add status badge to README
37 lines
737 B
YAML
37 lines
737 B
YAML
pipeline:
|
|
|
|
build:
|
|
image: golang
|
|
commands:
|
|
- go get ecodash
|
|
- go build
|
|
|
|
docker-publish:
|
|
image: plugins/docker
|
|
settings:
|
|
registry: gitea.massivebox.net
|
|
repo: gitea.massivebox.net/massivebox/ecodash
|
|
auto_tag: true
|
|
username: massivebox
|
|
password:
|
|
from_secret: auth_token
|
|
|
|
prepare-gitea-release:
|
|
image: alpine
|
|
commands:
|
|
- apk update; apk add zip
|
|
- zip -r ecodash.zip templates ecodash
|
|
when:
|
|
event: tag
|
|
|
|
gitea-publish:
|
|
image: plugins/gitea-release
|
|
settings:
|
|
base_url: https://gitea.massivebox.net
|
|
files: ecodash.zip
|
|
api_key:
|
|
from_secret: auth_token
|
|
title: ${CI_COMMIT_TAG}
|
|
when:
|
|
event: tag
|