From 5c834866a744fc92ccef3169c586221727dd37a7 Mon Sep 17 00:00:00 2001 From: Michael Zhang Date: Sat, 11 Feb 2023 17:54:59 -0600 Subject: [PATCH] i swear if it's this --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index a3105ab..057bacf 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -31,11 +31,11 @@ pipeline: - podman load < /shared/image.tar.gz - export REPO=git.mzhang.io/michael/liveterm - export TAG=$(podman images liveterm --format "{{.Tag}}") - - podman tag liveterm:$TAG $REPO:$TAG - - podman tag liveterm:$TAG $REPO:latest + - "podman tag liveterm:$TAG $REPO:$TAG" + - "podman tag liveterm:$TAG $REPO:latest" - podman login git.mzhang.io --username michael --password $DOCKER_TOKEN - - podman push $REPO:$TAG - - podman push $REPO:latest + - "podman push $REPO:$TAG" + - "podman push $REPO:latest" - exit 1 secrets: - DOCKER_TOKEN