35 lines
742 B
YAML
35 lines
742 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: generate-go-grpc
|
|
|
|
steps:
|
|
- name: clone-external
|
|
image: alpine/git
|
|
commands:
|
|
- git clone 'https://${GIT_USER}:${GIT_PASS}@git.itzana.me/StrafesNET/go-grpc.git'
|
|
environment:
|
|
GIT_USER:
|
|
from_secret: GIT_USER
|
|
GIT_PASS:
|
|
from_secret: GIT_PASS
|
|
|
|
- name: generate
|
|
image: registry.itzana.me/strafesnet/tools/protobuild:latest
|
|
commands:
|
|
- scripts/go-gen.sh
|
|
|
|
- name: commit
|
|
image: alpine/git
|
|
commands:
|
|
- cd go-grpc
|
|
- git add *
|
|
- 'git commit -m "Autogenerated update ${DRONE_COMMIT_SHA}"`
|
|
- git push 'https://${GIT_USER}:${GIT_PASS}@git.itzana.me/StrafesNET/go-grpc.git' --all
|
|
|
|
trigger:
|
|
ref:
|
|
- refs/heads/master
|
|
|
|
image_pull_secrets:
|
|
- dockerconfigjson |