[CI-only] Build and publish dev dockerhub images (#11790)

pull/11805/head
Michele Degges 4 years ago committed by GitHub
parent cec4f91d34
commit a8bbf7ae92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -256,3 +256,6 @@ jobs:
public.ecr.aws/hashicorp/${{ env.REPO_NAME }}:light
public.ecr.aws/hashicorp/${{ env.REPO_NAME }}:light-${{ env.version }}
public.ecr.aws/hashicorp/${{ env.REPO_NAME }}:${{ env.version }}
dev_tags: |
docker.io/hashicorppreview/${{ env.REPO_NAME }}:${{ env.version }}
docker.io/hashicorppreview/${{ env.REPO_NAME }}:${{ env.version }}-${{ github.sha }}

@ -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.

Loading…
Cancel
Save