4
0

pipeline fix
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2025-12-06 15:57:59 +01:00
parent e34375f05e
commit efc6b020e6

View File

@@ -10,7 +10,7 @@ steps:
GAME_LANG: lua GAME_LANG: lua
XDG_RUNTIME_DIR: /tmp XDG_RUNTIME_DIR: /tmp
commands: 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 - name: artifact
image: alpine image: alpine
@@ -24,11 +24,7 @@ steps:
commands: commands:
- apk add --no-cache openssh-client sshpass - apk add --no-cache openssh-client sshpass
- mkdir -p /root/.ssh - mkdir -p /root/.ssh
- sshpass -p $DROPAREA_SSH_PASSWORD \ - 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
scp -o StrictHostKeyChecking=no \
-P $DROPAREA_PORT \
$GAME_NAME.$GAME_LANG $GAME_NAME.tic \
$DROPAREA_USER@$DROPAREA_HOST:$DROPAREA_TARGET_PATH
- name: update - name: update
image: alpine image: alpine