diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 475c7836784..84a1e2b2657 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -260,3 +260,6 @@ jobs: tags: | docker.io/hashicorp/${{env.repo}}:${{env.version}} public.ecr.aws/hashicorp/${{env.repo}}:${{env.version}} + dev_tags: | + docker.io/hashicorppreview/${{ env.repo }}:${{ env.version }} + docker.io/hashicorppreview/${{ env.repo }}:${{ env.version }}-${{ github.sha }} \ No newline at end of file diff --git a/.release/ci.hcl b/.release/ci.hcl index 9a08c777289..d2734ce9e4b 100644 --- a/.release/ci.hcl +++ b/.release/ci.hcl @@ -161,6 +161,20 @@ event "verify" { } } +event "promote-dev-docker" { + depends = ["verify"] + action "promote-dev-docker" { + organization = "hashicorp" + repository = "crt-workflows-common" + workflow = "promote-dev-docker" + depends = ["verify"] + } + + notification { + on = "fail" + } +} + ## These are promotion and post-publish events ## they should be added to the end of the file after the verify event stanza.