Skip to content

Commit 8616a27

Browse files
committed
[build] run nightly jobs with stamp not config release
1 parent 2145a54 commit 8616a27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
cache-key: rb-nightly-${{ matrix.gem }}
3838
run: |
3939
export GEM_HOST_API_KEY="Bearer $GITHUB_TOKEN"
40-
./go rb:release[nightly,--config=release]
40+
./go rb:release[--stamp,nightly]
4141
on-ruby-failure:
4242
name: On Ruby Failure
4343
runs-on: ubuntu-latest
@@ -179,7 +179,7 @@ jobs:
179179
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
180180
echo "@seleniumhq:registry=https://npm.pkg.github.com" >> ~/.npmrc
181181
echo "always-auth=true" >> ~/.npmrc
182-
./go node:release['nightly','--config=release']
182+
./go node:release[--stamp,nightly]
183183
secrets: inherit
184184
on-javascript-failure:
185185
name: On JavaScript Failure

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ namespace :py do
554554
nightly = args.delete('nightly')
555555
Rake::Task['py:version'].invoke('nightly') if nightly
556556

557-
command = nightly.nil? ? '//py:selenium-release' : '//py:selenium-release-nightly'
557+
command = nightly ? '//py:selenium-release-nightly' : '//py:selenium-release'
558558
Bazel.execute('run', args, command)
559559
end
560560

0 commit comments

Comments
 (0)