nixos-runner/.drone.yml

42 lines
1.2 KiB
YAML
Raw Normal View History

2023-04-15 14:42:13 -05:00
---
kind: secret
name: docker_username
get:
path: docker
name: username
---
kind: secret
name: docker_password
get:
path: docker
name: password
---
kind: pipeline
type: kubernetes
name: publish
steps:
- name: build
image: docker.io/jcollie/nixos-runner:latest
pull: always
commands:
2023-08-17 13:10:58 -05:00
- set
- echo -n "${PASSWORD}" | podman login --username ${USERNAME} --password-stdin ${REGISTRY}
2023-04-15 14:42:13 -05:00
- nix build .#nixos-runner
2023-08-17 12:58:53 -05:00
# - nix run .#push-container -- result
2023-08-17 12:46:46 -05:00
- podman load --input result | sed -n -e "s/Loaded image:.\\(.*\\)/\\1/p" > loaded-image
- cat loaded-image
- podman images
2023-08-17 13:10:58 -05:00
- podman tag "$(<loaded-image)" "${REGISTRY}/${REPOSITORY}:${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"
2023-08-17 12:46:46 -05:00
- podman tag "$(<loaded-image)" "${REGISTRY}/${REPOSITORY}:latest"
- podman images
2023-08-17 13:10:58 -05:00
- podman push "${REGISTRY}/${REPOSITORY}:${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"
2023-08-17 12:46:46 -05:00
- podman push "${REGISTRY}/${REPOSITORY}:latest"
- podman logout "${REGISTRY}"
2023-04-15 14:42:13 -05:00
settings:
registry: docker.io
repository: jcollie/nixos-runner
username:
from_secret: docker_username
password:
from_secret: docker_password