2023-09-01 20:47:26 -05:00
|
|
|
kind: pipeline
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2023-09-05 20:18:17 -05:00
|
|
|
- name: Remove extra stuff to make Docker images lighter
|
|
|
|
image: alpine:latest
|
|
|
|
commands:
|
|
|
|
- apk add git
|
|
|
|
- cd /drone/src && git apply docker.patch
|
2023-09-01 20:47:26 -05:00
|
|
|
- name: build and publish
|
|
|
|
image: plugins/docker
|
|
|
|
pull: always
|
|
|
|
settings:
|
|
|
|
repo: askiiart/discord-always-dungeons
|
|
|
|
tags: latest
|
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|