diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml index 3ed8b77..96e8be9 100644 --- a/.woodpecker/build.yml +++ b/.woodpecker/build.yml @@ -6,16 +6,30 @@ matrix: - rules steps: + show: + image: docker + environment: + forge_name: + from_secret: forge_name + container_registry: + from_secret: container_registry + container_registry_username: + from_secret: container_registry_username + container_registry_password: + from_secret: container_registry_password + commands: + - echo $${forge_name} + - echo $${container_registry} + - echo $${container_registry_username} + - echo $${container_registry_password} + + + + build: image: plugins/kaniko settings: repo: ${FORGE_NAME}/${CI_REPO}/${APP} - registry: - from_secret: container_registry - username: - from_secret: container_registry_username - password: - from_secret: container_registry_password auto_tag: true dockerfile: apps/${APP}/Dockerfile when: