protobufs/.drone.yml
itzaname 8355104104
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Use ssh keys
2022-07-23 02:27:26 -04:00

72 lines
1.5 KiB
YAML

---
kind: pipeline
type: docker
name: generate-go-grpc
steps:
- name: clone-external
image: alpine/git
commands:
- git clone git@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
- mkdir -p .ssh && echo '${GIT_KEY'} > .ssh/id_rsa
- git add *
- 'git commit -m "Autogenerated update for ${DRONE_COMMIT_LINK}" || true'
- git push git@git.itzana.me:StrafesNET/go-grpc.git --all
trigger:
ref:
- refs/heads/master
image_pull_secrets:
- dockerconfigjson
---
kind: pipeline
type: docker
name: generate-python-grpc
steps:
- name: clone-external
image: alpine/git
commands:
- git clone git@git.itzana.me:StrafesNET/python-grpc.git
environment:
GIT_USER:
from_secret: GIT_USER
from_secret: GIT_PASS
GIT_PASS:
- name: generate
image: registry.itzana.me/strafesnet/tools/protobuild:latest
commands:
- scripts/python-gen.sh
- name: commit
image: alpine/git
commands:
- cd python-grpc
- mkdir -p .ssh && echo '${GIT_KEY'} > .ssh/id_rsa
- git add *
- 'git commit -m "Autogenerated update for ${DRONE_COMMIT_LINK}" || true'
- git push git@git.itzana.me:StrafesNET/python-grpc.git --all
trigger:
ref:
- refs/heads/master
image_pull_secrets:
- dockerconfigjson