Hi,
I have a question regarding triggering a GitHub workflow action after Docker Hub automated build is finished.
Before we had a Github workflow which would build a docker image à push to Docker hub à Pull the image à deploy/release to our environment.
Which works very well but we decided to test with building with Docker hub automated build instead.
Only problem is that we are unable to trigger a workflow deploy action after Docker hub is finished building the image. We already looked at the webhook part but it’s not clear to me how this part works.
So, in short what we would like to do is:
- Commit code to branch develop → docker hub builds image with tag:develop → docker hub triggers Github action Deploy to development.
- Commit code to branch test → docker hub builds image with tag:test → docker hub triggers Github action Deploy to test.