stages: - build - deploy build: stage: build tags: - nix - podman script: - podman login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - nix build . - podman load -i result - podman tag "localhost/gregs-homepage:latest" $CI_REGISTRY/greg/homepage/gregs-homepage:latest - podman push $CI_REGISTRY/greg/homepage/gregs-homepage:latest