Skip to content

Commit fa31d10

Browse files
committed
fix: update documentation
1 parent 1bd80a8 commit fa31d10

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

docs/usage/actions/write-custom-actions.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff 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
7677
docker 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
```

0 commit comments

Comments
 (0)