| vegall | 427cdb2 | 2024-06-13 15:59:43 +0000 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | # |
| 15 | |
| 16 | if [ "$#" -ne 2]; then |
| 17 | echo "Usage: $0 <NEW_VERSION> <USER>" |
| 18 | echo "Exapmle: $0 v16.0.0 garciadeblas" |
| 19 | echo "Exapmle: $0 v15.0.7 vegall" |
| 20 | exit 1 |
| 21 | fi |
| 22 | |
| 23 | NEW_VERSION="$1" |
| 24 | USER="$2" |
| 25 | REPO_URL="ssh://$USER@osm.etsi.org:29418/osm/devops" |
| 26 | # If the $NEW_VERSION == v15.0.1, the $BRANCH_NAME will be v15.0 |
| 27 | BRANCH_NAME=$(echo $NEW_VERSION | grep -oE 'v[0-9]+\.[0-9]+') |
| 28 | |
| 29 | git clone $REPO_URL |
| 30 | cd devops |
| 31 | |
| 32 | git checkout $BRANCH_NAME |
| 33 | |
| 34 | sed -i -E "0,/^version: .*/s//version: $NEW_VERSION/" installers/osm/Chart.yaml |
| 35 | sed -i -E "0,/^appVersion: .*/s//appVersion: \"$NEW_VERSION\"/" installers/helm/osm/Chart.yaml |
| 36 | |
| 37 | git add installers/helm/osm/Chart.yaml |
| 38 | git commit -m "Update chart version version to $NEW_VERSION" |
| 39 | git push origin $BRANCH_NAME |
| 40 | |
| 41 | commit=$(git show --summary | grep commit | awk '{print $2}') |
| 42 | echo "The commit is $commit" |