Skip to content

Commit

Permalink
feature(ci): add .drone.yml w/ Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
vshatravenko committed Mar 29, 2022
1 parent 44d18f3 commit b143014
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .drone.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
type: docker
kind: pipeline
name: "Main"

steps:
- name: Docker build Git SHA
image: plugins/docker:20
pull: if-not-exists
environment:
DOCKER_BUILDKIT: 1
settings:
username:
from_secret: quay_username
password:
from_secret: quay_password
config:
from_secrets: docker_config_json
repo: quay.io/openware/gotrue
registry: quay.io
purge: false
when:
event:
- push
branch:
- stable/ow
- feature/asymmetric-auth

0 comments on commit b143014

Please sign in to comment.