This repository has been archived on 2024-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
sanoid-deb/.drone.yml

37 lines
1.3 KiB
YAML
Raw Normal View History

2023-06-28 14:21:27 +02:00
---
kind: pipeline
type: docker
name: default
steps:
- name: run gitleaks
image: plugins/gitleaks
settings:
path: .
- name: build
2023-06-28 14:24:29 +02:00
image: registry.mgrote.net/allzweckcontainer:latest # privates Image, Pull-Secret notwendig
2023-06-28 14:21:27 +02:00
environment:
DEBIAN_FRONTEND: noninteractive
2023-06-28 14:41:01 +02:00
auth_token:
from_secret: httpd-api-server-token
2023-06-28 14:21:27 +02:00
commands:
- git clone https://git.mgrote.net/Mirror/sanoid.git
- cd sanoid
- # checkout latest stable release or stay on master for bleeding edge stuff (but expect bugs!)
- git checkout $(git tag | grep "^v" | tail -n 1)
2023-06-28 14:52:13 +02:00
- export version=$(git tag | grep "^v" | tail -n 1 | tr -d v)
2023-06-28 14:42:25 +02:00
- echo $version
2023-06-28 14:21:27 +02:00
- ln -s packages/debian .
2023-06-28 14:41:36 +02:00
- dpkg-buildpackage -uc -us
# upload
2023-06-28 15:00:22 +02:00
- cd ..
2023-06-28 14:54:46 +02:00
- cp sanoid_$(echo $version)_all.deb sanoid_latest_all.deb
2023-06-28 14:21:27 +02:00
- |
2023-06-28 14:56:34 +02:00
curl -X POST -H "token: $auth_token" -F "file=@./sanoid_$(echo $version)_all.deb" http://docker10.grote.lan:5040/upload
2023-06-28 14:21:27 +02:00
- |
2023-06-28 14:56:34 +02:00
curl -X POST -H "token: $auth_token" -F "file=@./sanoid_latest_all.deb" http://docker10.grote.lan:5040/upload
2023-06-28 14:21:27 +02:00
image_pull_secrets: # wird für den Login auf registry.mgrote.net benötigt
- dockerconfigjson
# siehe: https://wiki.mgrote.net/artikel/technik/drone.io_-_pull_secrets