From 5a74a3a4e588376e5b6cb491d9b4c020638ee9a0 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Thu, 16 Nov 2023 22:55:55 -0500 Subject: [PATCH] update .drone.yml --- .drone.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index e35dd90..1f9d694 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,7 @@ steps: - name: Testing Drone CI with a simple Ansible Playbook image: gitea.thezengarden.net/podman/images/ansible-dev:latest commands: - - ls -ltra /drone/src - - ansible-galaxy install -r /drone/src/requirements.yml - - ansible-lint /drone/src/hello.yml - - ansible-playbook -v -i 127.0.0.1, /drone/src/hello.yml + - ls -ltr $DRONE_WORKSPACE + - ansible-galaxy install -r $DRONE_WORKSPACE/requirements.yml + - ansible-lint --offline $DRONE_WORKSPACE + - ansible-playbook -v -i 127.0.0.1, $DRONE_WORKSPACE/hello.yml