File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -30,19 +30,21 @@ jobs:
30
30
run : |
31
31
git config --local user.email "[email protected] "
32
32
git config --local user.name "Selenium CI Bot"
33
- if git rev-parse --verify release-${{ github.event.inputs.version }} >/dev/null 2>&1; then
34
- git branch -D release-${{ github.event.inputs.version }}
33
+ if git rev-parse --verify release-preparation- ${{ github.event.inputs.version }} >/dev/null 2>&1; then
34
+ git branch -D release-preparation- ${{ github.event.inputs.version }}
35
35
fi
36
- git checkout -b release-${{ github.event.inputs.version }}
36
+ git checkout -b release-preparation- ${{ github.event.inputs.version }}
37
37
- name : Update Rust Version
38
38
run : |
39
39
./go rust:version ${{ github.event.inputs.version }}
40
- ./go rust:version:commit
40
+ ./go rust:changelog
41
+ - name : Commit Rust updates
42
+ run : git commit -m "update selenium manager version and rust changelog"
41
43
- name : Push changes
42
44
uses : ad-m/github-push-action@master
43
45
with :
44
46
github_token : ${{ secrets.SELENIUM_CI_TOKEN }}
45
- branch : release-${{ github.event.inputs.version }}
47
+ branch : release-preparation- ${{ github.event.inputs.version }}
46
48
force : true
47
49
48
50
selenium-manager :
51
53
uses : ./.github/workflows/ci-rust.yml
52
54
with :
53
55
release : true
54
- branch : release-${{ github.event.inputs.version }}
56
+ branch : release-preparation- ${{ github.event.inputs.version }}
55
57
secrets :
56
58
SELENIUM_CI_TOKEN : ${{ secrets.SELENIUM_CI_TOKEN }}
57
59
Original file line number Diff line number Diff line change @@ -1192,7 +1192,6 @@ namespace :all do
1192
1192
Rake ::Task [ 'node:version' ] . invoke ( version )
1193
1193
Rake ::Task [ 'py:version' ] . invoke ( version )
1194
1194
Rake ::Task [ 'dotnet:version' ] . invoke ( version )
1195
- Rake ::Task [ 'rust:version' ] . invoke ( version )
1196
1195
1197
1196
unless version == 'nightly'
1198
1197
Rake ::Task [ 'all:changelogs' ] . invoke
@@ -1214,7 +1213,6 @@ namespace :all do
1214
1213
Rake ::Task [ 'node:changelog' ] . invoke
1215
1214
Rake ::Task [ 'py:changelog' ] . invoke
1216
1215
Rake ::Task [ 'dotnet:changelog' ] . invoke
1217
- Rake ::Task [ 'rust:changelog' ] . invoke
1218
1216
end
1219
1217
end
1220
1218
You can’t perform that action at this time.
0 commit comments