-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- `./hack/release.sh` to make the release - Update `Makefile` to be able to do a release (and a github-release) - Update release workflow to use `make github-release` Signed-off-by: Vincent Demeester <[email protected]>
- Loading branch information
1 parent
120f3d1
commit b034ee3
Showing
3 changed files
with
103 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Renders and copies documentation files into the informed RELEASE_DIR, the script search for | ||
# task templates on a specific glob expression. The templates are rendered using the actual | ||
# task name and documentation is searched for and copied over to the task release directory. | ||
# | ||
|
||
shopt -s inherit_errexit | ||
set -eu -o pipefail | ||
|
||
readonly RELEASE_DIR="${1:-}" | ||
|
||
# Print error message and exit non-successfully. | ||
panic() { | ||
echo "# ERROR: ${*}" | ||
exit 1 | ||
} | ||
|
||
# Extracts the filename only, without path or extension. | ||
extract_name() { | ||
declare filename=$(basename -- "${1}") | ||
declare extension="${filename##*.}" | ||
echo "${filename%.*}" | ||
} | ||
|
||
# Finds the respective documentation for the task name, however, for s2i it only consider the | ||
# "task-s2i" part instead of the whole name. | ||
find_doc() { | ||
declare task_name="${1}" | ||
[[ "${task_name}" == "task-s2i"* ]] && | ||
task_name="task-s2i" | ||
find docs/ -name "${task_name}*.md" | ||
} | ||
|
||
# | ||
# Main | ||
# | ||
|
||
release() { | ||
# making sure the release directory exists, this script should only create releative | ||
# directories using it as root | ||
[[ ! -d "${RELEASE_DIR}" ]] && | ||
panic "Release dir is not found '${RELEASE_DIR}'!" | ||
|
||
# releasing task-git (it's the only task) | ||
# See task-containers if there is more than one task to support. | ||
declare task_name=task-git | ||
declare task_doc=README.md | ||
declare task_dir="${RELEASE_DIR}/tasks/${task-name}" | ||
[[ ! -d "${task_dir}" ]] && | ||
mkdir -p "${task_dir}" | ||
|
||
# rendering the helm template for the specific file, using the resource name for the | ||
# filename respectively | ||
echo "# Rendering '${task_name}' at '${task_dir}'..." | ||
helm template . >${task_dir}/${task_name}.yaml || | ||
panic "Unable to render '${task_name}'!" | ||
|
||
# finds the respective documentation file copying as "README.md", on the same | ||
# directory where the respective task is located | ||
echo "# Copying '${task_name}' documentation file '${task_doc}'..." | ||
cp -v -f ${task_doc} "${task_dir}/README.md" || | ||
panic "Unable to copy '${task_doc}' into '${task_dir}'" | ||
} | ||
|
||
release |