dumb
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Michael Zhang 2023-02-11 12:14:57 -06:00
parent a425d58ab7
commit 6591ef4c6f

View file

@ -15,7 +15,8 @@ pipeline:
commands:
- ls -la
- pwd
- nix --extra-experimental-features "nix-command flakes" build -o /shared/image.tar.gz .#liveterm-docker
- nix --extra-experimental-features "nix-command flakes" build -o image.tar.gz .#liveterm-docker
- cp $(readlink -f image.tar.gz) /shared/image.tar.gz
volumes:
- "liveterm-shared:/shared"
when:
@ -27,11 +28,14 @@ pipeline:
commands:
- ls -la
- pwd
- docker load /shared/image.tar.gz
- podman load < /shared/image.tar.gz
- export REPO=git.mzhang.io/michael/liveterm
- export TAG=$(docker images liveterm --format "{{.Tag}}")
- docker tag liveterm:$TAG $REPO:$TAG
- docker push $REPO:$TAG
- export TAG=$(podman images liveterm --format "{{.Tag}}")
- podman tag liveterm:$TAG $REPO:$TAG
- podman login git.mzhang.io --username michael --password $DOCKER_TOKEN
- podman push $REPO:$TAG
secrets:
- DOCKER_TOKEN
volumes:
- "liveterm-shared:/shared"
when: