gpr-docker-publish
gpr-docker-publish copied to clipboard
GitHub Action That Publishes Docker Images to GPR
Fix issue #18 GitHub have deprecated set-output, this PR fixes this as per the documentation [See GitHub Notice: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/)
set-output has been deprecated by GitHub and this should be addressed before it is removed completely [See GitHub Notice: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/)
I'm currently enjoying and using `gpr-docker-publish` for some blog project. It is working pretty well. This morning I suddently runned into a [strange issue](https://github.com/tommywalkie/blog/runs/557657789?check_suite_focus=true#step:4:969) when **pushing a successfully built image...
Currently the docker cli tries to login in interactively, despite https://github.com/machine-learning-apps/gpr-docker-publish/blob/master/entrypoint.sh#L37 This fails because the shell is not a TTY. Notably, the failure is non-fatal and the workflow continues on...
Hey, I am 'newish' to Docker and Github Actions, but I am trying to push to the latest tag of my docker image hosted in Github package registry doing so:...
I added the functionality to implicitly use Git Tags as additional Docker Tags. Means: If you commit a new Git Tag, an appropriate additional Docker Tag with the same name...
If you build the Dockerfile and store the output in Dockerhub, you could point to that instead of at the docker file. It would save build time for every user...