File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change 79
79
- name : Run all tests, linting and baselines
80
80
if : ${{ !inputs.skip_code_quality }}
81
81
run : make pr
82
+ - name : Git client setup and refresh tip
83
+ run : |
84
+ git config user.name "Release bot"
85
+ git config user.email "[email protected] "
86
+ git config pull.rebase true
87
+ git config remote.origin.url >&- || git remote add origin https://github.com/"${ORIGIN}" # Git Detached mode (release notes) doesn't have origin
88
+ git pull origin "${BRANCH}"
82
89
- name : Bump package version
83
90
id : versioning
84
91
run : poetry version "${RELEASE_VERSION}"
@@ -97,14 +104,6 @@ jobs:
97
104
env :
98
105
PYPI_USERNAME : __token__
99
106
PYPI_TOKEN : ${{ secrets.PYPI_TOKEN }}
100
- - name : Git client setup and refresh tip
101
- if : steps.versioning.outcome == 'success'
102
- run : |
103
- git config user.name "Release bot"
104
- git config user.email "[email protected] "
105
- git config pull.rebase true
106
- git config remote.origin.url >&- || git remote add origin https://github.com/"${ORIGIN}" # Git Detached mode (release notes) doesn't have origin
107
- git pull origin "${BRANCH}"
108
107
- name : Update version in trunk
109
108
if : steps.versioning.outcome == 'success'
110
109
run : |
You can’t perform that action at this time.
0 commit comments