You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
744 B
YAML
32 lines
744 B
YAML
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: bringCookies
|
|
|
|
steps:
|
|
|
|
- name: build image
|
|
image: plugins/kaniko
|
|
settings:
|
|
dockerfile: Dockerfile
|
|
repo: katharina1602/drone-nextcloud
|
|
username:
|
|
from_secret: userdockerhub
|
|
password:
|
|
from_secret: passworddockerhub
|
|
tags:
|
|
- ${DRONE_COMMIT_SHA}
|
|
- latest
|
|
|
|
- name: test plugin
|
|
image: katharina1602/drone-nextcloud:${DRONE_COMMIT_SHA}
|
|
settings:
|
|
sourcepath: BringCookies/main.py
|
|
destinationpath: TestSourceCode/main.py
|
|
nextcloudinstance: cloud.uploadfilter24.eu
|
|
user:
|
|
from_secret: usernextcloud
|
|
password:
|
|
from_secret: passwordnextcloud
|
|
protocol: https
|
|
verifytls: True |