diff --git a/Chart.yaml b/Chart.yaml index 1d1ea46..c67000a 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v2 -name: task-oc -version: 0.0.1 -description: TODO... +name: task-openshift +version: 0.1.0 +description: Contains the Tekton Tasks to manage CLI related tasks type: application \ No newline at end of file diff --git a/Makefile b/Makefile index 04071ee..fbfa80b 100644 --- a/Makefile +++ b/Makefile @@ -5,10 +5,11 @@ OSP_VERSION ?= latest # using the chart name and version from chart's metadata CHART_NAME ?= $(shell awk '/^name:/ { print $$2 }' Chart.yaml) -CHART_VESION ?= $(shell awk '/^version:/ { print $$2 }' Chart.yaml) +CHART_VERSION ?= $(shell awk '/^version:/ { print $$2 }' Chart.yaml) RELEASE_VERSION = v$(CHART_VERSION) -CATALOGCD_VERSION = v0.1.0 +# release directory where the Tekton resources are rendered into. +RELEASE_DIR ?= /tmp/$(CHART_NAME)-$(CHART_VERSION) # bats entry point and default flags BATS_CORE = ./test/.bats/bats-core/bin/bats diff --git a/hack/release.sh b/hack/release.sh old mode 100644 new mode 100755 index 242c5b6..6b1ba31 --- a/hack/release.sh +++ b/hack/release.sh @@ -26,7 +26,7 @@ extract_name() { # Finds the respective documentation for the task name find_doc() { declare task_name="${1}" - find docs/ -name "${task_name}*.md" + find docs/ -name "${task_name}.md" } #