From efc6b020e688a67d070ae4286eb6fd41082a0fec Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Sat, 6 Dec 2025 15:57:59 +0100 Subject: [PATCH] pipeline fix --- .woodpecker.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index ac97790..bacaf16 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -10,7 +10,7 @@ steps: GAME_LANG: lua XDG_RUNTIME_DIR: /tmp commands: - - tic80 --cli --skip --fs=. --cmd="load $GAME_NAME.$GAME_LANG & export $GAME_NAME.tic & exit" + - tic80 --cli --skip --fs=. --cmd="load $GAME_NAME.$GAME_LANG & save $GAME_NAME & exit" - name: artifact image: alpine @@ -24,11 +24,7 @@ steps: commands: - apk add --no-cache openssh-client sshpass - mkdir -p /root/.ssh - - sshpass -p $DROPAREA_SSH_PASSWORD \ - scp -o StrictHostKeyChecking=no \ - -P $DROPAREA_PORT \ - $GAME_NAME.$GAME_LANG $GAME_NAME.tic \ - $DROPAREA_USER@$DROPAREA_HOST:$DROPAREA_TARGET_PATH + - sshpass -p $DROPAREA_SSH_PASSWORD scp -o StrictHostKeyChecking=no -P $DROPAREA_PORT $GAME_NAME.$GAME_LANG $GAME_NAME.tic $DROPAREA_USER@$DROPAREA_HOST:$DROPAREA_TARGET_PATH - name: update image: alpine