nix(fix): Make naming of tools in postgrest-release- namespace consistent

This commit is contained in:
Wolfgang Walther
2021-04-18 13:51:39 +02:00
committed by Wolfgang Walther
parent 280b89d87c
commit bc879507ae
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -105,11 +105,11 @@ jobs:
name: Publish Docker images name: Publish Docker images
command: | command: |
export DOCKER_REPO=postgrest export DOCKER_REPO=postgrest
postgrest-docker-login postgrest-release-docker-login
postgrest-release-dockerhub $CIRCLE_TAG postgrest-release-dockerhub $CIRCLE_TAG
if test "$CIRCLE_TAG" != "nightly" if test "$CIRCLE_TAG" != "nightly"
then then
postgrest-release-dockerhubdescription postgrest-release-dockerhub-description
fi fi
# Build everything in default.nix and push to the Cachix binary cache if running on main # Build everything in default.nix and push to the Cachix binary cache if running on main
+2 -2
View File
@@ -62,7 +62,7 @@ let
dockerLogin = dockerLogin =
checkedShellScript checkedShellScript
{ {
name = "postgrest-docker-login"; name = "postgrest-release-docker-login";
docs = docs =
'' ''
Log in to Docker Hub using the DOCKER_USER and DOCKER_PASS env vars. Log in to Docker Hub using the DOCKER_USER and DOCKER_PASS env vars.
@@ -129,7 +129,7 @@ let
in in
checkedShellScript checkedShellScript
{ {
name = "postgrest-release-dockerhubdescription"; name = "postgrest-release-dockerhub-description";
docs = "Update the repository description on Docker Hub."; docs = "Update the repository description on Docker Hub.";
args = [ args = [
"ARG_USE_ENV([DOCKER_USER], [], [DockerHub user name])" "ARG_USE_ENV([DOCKER_USER], [], [DockerHub user name])"