File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ commands:
60
60
npx lerna version << pipeline.parameters.publish-type >> --force-publish --no-git-tag-version --exact --yes
61
61
git add .
62
62
export RELEASE_TAG="$(node -pe "require('./lerna.json').version")"
63
- git commit -m "chore: updated version $RELEASE_TAG"
63
+ git commit -m --allow-empty "chore: updated version $RELEASE_TAG"
64
64
- run :
65
65
name : Build project
66
66
command : yarn build
@@ -248,15 +248,18 @@ jobs:
248
248
steps :
249
249
- attach_workspace :
250
250
at : ~/cli
251
+ - gh-config
252
+ - ssh-config
251
253
- run :
252
254
name : Backport version bump to develop branch
253
255
command : |
254
256
export LATEST_VERSION=$(git describe --tags --abbrev=0)
255
257
git checkout main
256
258
git checkout -b portToDevelop-${LATEST_VERSION}
259
+ git checkout -- .
257
260
git rebase --onto origin/develop portToDevelop-${LATEST_VERSION}^ portToDevelop-${LATEST_VERSION}
258
261
git checkout develop
259
- git merge -ff-only portToDevelop-${LATEST_VERSION}
262
+ git merge -- ff-only portToDevelop-${LATEST_VERSION}
260
263
git push origin develop
261
264
262
265
workflows :
You can’t perform that action at this time.
0 commit comments