mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00
17 lines
276 B
Bash
Executable File
17 lines
276 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -exuo pipefail
|
|
|
|
GIT_ASKPASS="$(pwd)/automation/git-askpass.sh"
|
|
[ -f "$GIT_ASKPASS" ] || exit 1
|
|
export GIT_ASKPASS
|
|
|
|
export DOCKER_TAG=""
|
|
|
|
make apidocs
|
|
make manifests
|
|
make build-functest
|
|
|
|
bash hack/gen-swagger-doc/deploy.sh
|
|
bash hack/publish-staging.sh
|