[CI-only] Build and publish dev dockerhub images (#13084)
This commit is contained in:
parent
9ecaa6547f
commit
68e72fd0db
|
@ -251,3 +251,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 }}-dev
|
||||
docker.io/hashicorppreview/${{ env.repo }}:${{ env.version }}-${{ github.sha }}
|
||||
|
|
|
@ -164,6 +164,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…
Reference in New Issue