fix drone build
This commit is contained in:
parent
54a46488f6
commit
14d5105439
1 changed files with 6 additions and 6 deletions
12
.drone.yml
12
.drone.yml
|
@ -20,18 +20,18 @@ steps:
|
|||
pull: always
|
||||
commands:
|
||||
- set
|
||||
- echo -n "${PASSWORD}" | podman login --username ${USERNAME} --password-stdin ${REGISTRY}
|
||||
- echo -n "${PLUGIN_PASSWORD}" | podman login --username ${PLUGIN_USERNAME} --password-stdin ${PLUGIN_REGISTRY}
|
||||
- nix build .#nixos-runner
|
||||
# - nix run .#push-container -- result
|
||||
- podman load --input result | sed -n -e "s/Loaded image:.\\(.*\\)/\\1/p" > loaded-image
|
||||
- cat loaded-image
|
||||
- podman images
|
||||
- podman tag "$(<loaded-image)" "${REGISTRY}/${REPOSITORY}:${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"
|
||||
- podman tag "$(<loaded-image)" "${REGISTRY}/${REPOSITORY}:latest"
|
||||
- podman tag "$(<loaded-image)" "${PLUGIN_REGISTRY}/${PLUGIN_REPOSITORY}:${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"
|
||||
- podman tag "$(<loaded-image)" "${PLUGIN_REGISTRY}/${PLUGIN_REPOSITORY}:latest"
|
||||
- podman images
|
||||
- podman push "${REGISTRY}/${REPOSITORY}:${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"
|
||||
- podman push "${REGISTRY}/${REPOSITORY}:latest"
|
||||
- podman logout "${REGISTRY}"
|
||||
- podman push "${PLUGIN_REGISTRY}/${PLUGIN_REPOSITORY}:${DRONE_BUILD_NUMBER}-${DRONE_COMMIT_SHA:0:8}"
|
||||
- podman push "${PLUGIN_REGISTRY}/${PLUGIN_REPOSITORY}:latest"
|
||||
- podman logout "${PLUGIN_REGISTRY}"
|
||||
settings:
|
||||
registry: docker.io
|
||||
repository: jcollie/nixos-runner
|
||||
|
|
Loading…
Reference in a new issue