blob: 291d611a1bbfe44b3cddec5d610b5374e03c3d05 [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>"
garciadeblasa9cab1f2025-01-13 12:04:42 +010018 echo "Example: $0 16.0.0 garciadeblas"
19 echo "Example: $0 15.0.7 vegall"
vegall427cdb22024-06-13 15:59:43 +000020 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
garciadeblasa9cab1f2025-01-13 12:04:42 +010034sed -i -E "0,/^version: .*/s//version: \"$NEW_VERSION\"/" installers/osm/Chart.yaml
vegall427cdb22024-06-13 15:59:43 +000035sed -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}')
garciadeblasa9cab1f2025-01-13 12:04:42 +010042echo "The commit is $commit"