Skip to content

Commit

Permalink
Fix publish_docker issues for keycloak and api-server (#7957)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmossman committed Jul 21, 2023
1 parent ec08cfb commit bc4d45e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tools/bin/publish_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ projectDir=(
"server"
"temporal"
"webapp"
"workers",
"keycloak",
"workers"
"keycloak"
"keycloak-setup"
"api-server"
)

# Set default values to required vars. If set in env, values will be taken from there.
Expand All @@ -42,6 +43,10 @@ for workdir in "${projectDir[@]}"
artifactName="worker"
;;

"api-server")
artifactName="airbyte-api-server"
;;

*)
artifactName=${workdir%/*}
;;
Expand Down

0 comments on commit bc4d45e

Please sign in to comment.