From 4dcda887a8ef9ffca9ec4c55b12bf6742d83c289 Mon Sep 17 00:00:00 2001 From: vista Date: Sat, 11 Mar 2023 17:21:23 +0100 Subject: [PATCH] Update '.woodpecker/test.yml' --- .woodpecker/test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 0382ccd..e7f02cd 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -3,7 +3,8 @@ pipeline: image: alpine commands: - echo "fail" - - exit 1 + - export TEST=yay + - exit 0 when: path: include: [ '.woodpecker/test.yml', 'build/*' ] @@ -12,6 +13,7 @@ pipeline: image: alpine commands: - echo "next" + - echo $TEST when: path: include: [ '.woodpecker/test.yml', 'build/*' ]