File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -69,15 +69,16 @@ The following environment variables are deprecated and will be removed in the fu
6969
7070## Push Actions to Docker Hub
7171
72- Kleinkram actions must be pushed to Docker Hub under the rslethz/\*\*\* namespace. To publish your action:
72+ Kleinkram actions must be pushed to Docker Hub under a namespace defined by the ` VITE_DOCKER_HUB_NAMESPACE ` environment variable.
73+ If this is left empty, actions are allowed to be pushed on any namespace. To publish your action:
7374
7475``` bash
7576# login to docker hub
7677docker login
7778
7879# build the image
79- docker build -t rslethz /my-action .
80+ docker build -t < namespace > /my-action .
8081
8182# push the image
82- docker push rslethz /my-action
83+ docker push < namespace > /my-action
8384```
You can’t perform that action at this time.
0 commit comments