File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -47,13 +47,18 @@ sudo npm install -g yarn
47
47
cd backstage-plugins
48
48
yarn --prefer-offline --frozen-lockfile
49
49
50
+ cd plugins/orchestrator-common
51
+ current_version_common_package=$( node -p " require('./package.json').version" )
52
+ cd -
53
+ echo " current_version_common_package= $current_version_common_package "
54
+
50
55
# Update package version
51
56
for folder in " plugins/orchestrator-common" " plugins/orchestrator" " plugins/orchestrator-backend" ; do
52
57
echo " Update version of $folder "
53
58
cd " $folder "
54
- current_version_common_package=$( node -p " require('./package.json').version" )
55
59
yarn version --new-version " $VERSION " --no-git-tag-version
56
60
sed -i ' s/"@janus-idp\/backstage-plugin-orchestrator-common": "' " $current_version_common_package " ' "/"@janus-idp\/backstage-plugin-orchestrator-common": "' " $VERSION " ' "/g' package.json
61
+ git diff ./package.json
57
62
cd -
58
63
done
59
64
You can’t perform that action at this time.
0 commit comments