Docker Action
ActionsTags
(2)This action publish docker image to your registry
Required Registry username to authentication.
Required Registry password to authentication.
Required Repository on registry.
If you didn't use dockerhub, pass registry hostname.
Image tag. If you don't want to set, it sets default snapshot tag(current time).
Tagged image name
If you use dockerhub[https://hub.docker.com],
uses: zenato/docker-action@master
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: user/test-repo
tag: 1.0
Other registry,
uses: zenato/docker-action@master
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: user/test-repo/test-app
registry: docker.pkg.github.com
tag: 1.0
Docker Action is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.