Skip to content

Commit 0659696

Browse files
committed
[build] need to actually pass the version to the update version rake task
1 parent c78af18 commit 0659696

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pre-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
git checkout -b release-${{ github.event.inputs.version }}
3737
- name: Update Rust Version
3838
run: |
39-
./go rust:version[${{ github.event.inputs.version }}]
39+
./go rust:version ${{ github.event.inputs.version }}
4040
./go rust:version:commit
4141
- name: Push changes
4242
uses: ad-m/github-push-action@master
@@ -79,11 +79,11 @@ jobs:
7979
git config --local user.email "[email protected]"
8080
git config --local user.name "Selenium CI Bot"
8181
- name: Update browser versions
82-
run: ./go update_browsers[${{ github.event.inputs.chrome_channel }}]
82+
run: ./go update_browsers ${{ github.event.inputs.chrome_channel }}
8383
- name: Commit browser updates
8484
run: git commit -m "update pinned browser versions"
8585
- name: Update devtools versions
86-
run: ./go all:update_cdp[${{ github.event.inputs.chrome_channel }}]
86+
run: ./go all:update_cdp ${{ github.event.inputs.chrome_channel }}
8787
- name: Commit DevTools updates
8888
run: git commit -m "update devtools versions"
8989
- name: Update Selenium Manager versions
@@ -99,7 +99,7 @@ jobs:
9999
- name: Commit Authors updates
100100
run: git commit -m "update authors file"
101101
- name: Bump minor version
102-
run: ./go all:version
102+
run: ./go all:version ${{ github.event.inputs.version }}
103103
- name: Commit version updates
104104
run: git commit -m "bump versions in preparation for release"
105105
- name: Update changelog

0 commit comments

Comments
 (0)