From 5fcae7b7cc768cc4e1ba22c020fcd77c24259c8f Mon Sep 17 00:00:00 2001 From: rafael Date: Tue, 25 Nov 2025 19:36:53 -0400 Subject: [PATCH] Remove `.drone.yml` configuration file. --- .drone.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index e62104a..0000000 --- a/.drone.yml +++ /dev/null @@ -1,37 +0,0 @@ -kind: pipeline -type: docker -name: deploy-backoffice - -trigger: - branch: - - master - -steps: - - name: deploying-project - image: alpine - environment: - SSH_USERNAME: - from_secret: ssh_username - SSH_HOSTNAME: - from_secret: ssh_hostname - SSH_PRIVATE_KEY: - from_secret: ssh_id_rsa - commands: - - apk add --no-cache rsync openssh - - mkdir -p ~/.ssh - - echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_rsa - - chmod 600 ~/.ssh/id_rsa - - | - rsync -avz --delete \ - -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa" \ - ./ $SSH_USERNAME@$SSH_HOSTNAME:/home/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME} \ - --exclude .git \ - --exclude node_modules \ - --exclude .drone.yml - when: - branch: - - master - event: - - push - -# testing 5 \ No newline at end of file