From fe01bc9a1b17f744e54b429dada83d420625fc58 Mon Sep 17 00:00:00 2001 From: Aaron Guise Date: Fri, 11 Mar 2022 12:19:01 +1300 Subject: [PATCH] Update to drone variables --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 9ee8e3e..e632027 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,9 +10,9 @@ steps: path: /var/run commands: - apt-get update && apt-get install -y rsync - - mkdir $BITBUCKET_REPO_SLUG - - rsync -a . $BITBUCKET_REPO_SLUG --exclude $BITBUCKET_REPO_SLUG - - cd $BITBUCKET_REPO_SLUG + - mkdir ${DRONE_REPO_NAME} + - rsync -a . ${DRONE_REPO_NAME} --exclude ${DRONE_REPO_NAME} + - cd ${DRONE_REPO_NAME} - python3 --version - ansible --version - molecule --version