Compare commits

...

1 Commits

Author SHA1 Message Date
Adam Veldhousen 96fae6abc6
add drone ci
ci.vdhsn.com/push Build is failing Details
2023-06-02 18:32:19 -05:00
1 changed files with 48 additions and 0 deletions

48
.drone.yml Normal file
View File

@ -0,0 +1,48 @@
kind: pipeline
type: kubernetes
name: Build Images
trigger:
event:
- push
steps:
- name: Build & Publish
image: plugins/kaniko
settings:
registry: git.vdhsn.com
# username:
# from_secret: DOCKER_USERNAME
# password:
# from_secret: DOCKER_PASSWORD
repo: git.vdhsn.com/
no-push: true
tags:
- ${DRONE_COMMIT_SHA}
- ${DRONE_BRANCH}
# ---
# kind: pipeline
# type: kubernetes
# name: Deploy beta
# trigger:
# event:
# - push
# branch:
# - trunk
# steps:
# - name: discord notification
# image: appleboy/drone-discord
# environment:
# DISCORD_WEBHOOK_ID:
# from_secret: DISCORD_WEBHOOK_ID
# DISCORD_WEBHOOK_TOKEN:
# from_secret: DISCORD_WEBHOOK_TOKEN
# settings:
# username: Drone CI
# message: Weekly Server Update Complete!
# webhook_id:
# from_secret: DISCORD_WEBHOOK_ID
# webhook_token:
# from_secret: DISCORD_WEBHOOK_TOKEN