Update drone.yml

This commit is contained in:
Tyler Perkins 2024-04-05 10:53:26 -04:00
parent 259a8161f4
commit c8220df092
1 changed files with 37 additions and 9 deletions

View File

@ -1,13 +1,41 @@
kind: pipeline
type: docker
name: build-and-release
name: build-container
steps:
- name: build
image: alpine
commands:
- echo "Build your code!"
- name: release
image: alpine
commands:
- echo "Release your code!"
- name: build-and-push
image: plugins/docker
settings:
repo: git.clortox.com/tyler/pytorch-interactive
registry: git.clortox.com
username:
from_secret: gitea_docker_username
password:
from_secret: gitea_docker_password
tags:
- latest
- ${DRONE_TAG}
when:
event:
- tag
- name: notify
image: clortox/drone-ntfy
settings:
URL: https://ntfy.clortox.com
USERNAME: drone
PASSWORD:
from_secret: ntfy_password
TOPIC: drone-builds
MESSAGE: Pytorch-interactive ${DRONE_TAG} has compiled!
CLICK: https://drone.clortox.com/Infrastructure/filebrowser
TITLE: Pytorch-interactive
when:
event:
- tag
trigger:
event:
- tag