blob: 07637cc2b1a3624c6ede4ec1a48b3ab579b93484 [file] [log] [blame]
vegall427cdb22024-06-13 15:59:43 +00001#!/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
16if [ "$#" -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
21fi
22
23NEW_VERSION="$1"
24USER="$2"
25REPO_URL="ssh://$USER@osm.etsi.org:29418/osm/devops"
26# If the $NEW_VERSION == v15.0.1, the $BRANCH_NAME will be v15.0
27BRANCH_NAME=$(echo $NEW_VERSION | grep -oE 'v[0-9]+\.[0-9]+')
28
29git clone $REPO_URL
30cd devops
31
32git checkout $BRANCH_NAME
33
34sed -i -E "0,/^version: .*/s//version: $NEW_VERSION/" installers/osm/Chart.yaml
35sed -i -E "0,/^appVersion: .*/s//appVersion: \"$NEW_VERSION\"/" installers/helm/osm/Chart.yaml
36
37git add installers/helm/osm/Chart.yaml
38git commit -m "Update chart version version to $NEW_VERSION"
39git push origin $BRANCH_NAME
40
41commit=$(git show --summary | grep commit | awk '{print $2}')
42echo "The commit is $commit"