6 lines
153 B
Bash
Executable file
6 lines
153 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if [ -n "$PROJECT_REPO_TAG" ]; then
|
|
exec "$(dirname "$0")/deploy-release.sh"
|
|
else
|
|
exec "$(dirname "$0")/deploy-branch.sh"
|
|
fi
|