diff --git a/.drone.yml b/.drone.yml index 9ecd59b..9d04c45 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,22 +1,9 @@ kind: pipeline type: docker -name: default +name: simple steps: - - name: master_build - image: cschlosser/drone-ftps - environment: - FTP_USERNAME: - from_secret: ftp_username - FTP_PASSWORD: - from_secret: ftp_password - PLUGIN_HOSTNAME: test.deligraph.com:22 - PLUGIN_SRC_DIR: ./ - PLUGIN_DEST_DIR: /test - PLUGIN_SECURE: false - PLUGIN_VERIFY: false - when: - branch: - - main - event: - - push + - name: hello + image: alpine + commands: + - echo "Hello, World!"