diff --git a/charts/tekton-pipelines/Chart.yaml b/charts/tekton-pipelines/Chart.yaml index 143efc21..4baf0980 100644 --- a/charts/tekton-pipelines/Chart.yaml +++ b/charts/tekton-pipelines/Chart.yaml @@ -6,7 +6,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.37-dev.2 +version: 0.1.37-dev.3 maintainers: diff --git a/charts/tekton-pipelines/README.md b/charts/tekton-pipelines/README.md index c40ce38f..c5f6c406 100644 --- a/charts/tekton-pipelines/README.md +++ b/charts/tekton-pipelines/README.md @@ -31,7 +31,7 @@ saritasa-tekton-pipelines ## `chart.version` -![Version: 0.1.37-dev.2](https://img.shields.io/badge/Version-0.1.37--dev.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) +![Version: 0.1.37-dev.3](https://img.shields.io/badge/Version-0.1.37--dev.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ## Maintainers diff --git a/charts/tekton-pipelines/values.yaml b/charts/tekton-pipelines/values.yaml index 46e15ceb..a956327f 100644 --- a/charts/tekton-pipelines/values.yaml +++ b/charts/tekton-pipelines/values.yaml @@ -194,16 +194,15 @@ buildpacks: if [ -f poetry.lock ]; then echo "poetry.lock is found, skipping pip section." exit + fi + if [ -f manage.py ]; then + cp requirements/$(params.environment)*.txt requirements.txt || echo "Unable to find requirements for $(params.environment)" + fi + if [ -f requirements.txt ]; then + echo "Found requirements.txt" else - if [ -f manage.py ]; then - cp requirements/$(params.environment)*.txt requirements.txt || echo "Unable to find requirements for $(params.environment)" - fi - if [ -f requirements.txt ]; then - echo "Found requirements.txt" - else - echo "requirements.txt is not found! Halting execution." - exit 1 - fi + echo "requirements.txt is not found! Halting execution." + exit 1 fi # ┌──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐ # │ BUILDPACK: DOTNET │