Skip to content

Commit

Permalink
[build] fix nightly workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
titusfortner committed Jun 14, 2024
1 parent cb1458b commit b3da45e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
if: (github.repository_owner == 'seleniumhq') && (inputs.language == 'ruby' || github.event_name == 'schedule')
name: Ruby
uses: ./.github/workflows/bazel.yml
env:
GEM_HOST_API_KEY: "Bearer $GITHUB_TOKEN"
strategy:
fail-fast: false
matrix:
Expand All @@ -37,7 +35,9 @@ jobs:
with:
name: Nightly Ruby Release
cache-key: rb-nightly-${{ matrix.gem }}
run: ./go rb:release['nightly', '--config=release']
run: |
export GEM_HOST_API_KEY="Bearer $GITHUB_TOKEN"
./go rb:release['nightly','--config=release']
on-ruby-failure:
name: On Ruby Failure
runs-on: ubuntu-latest
Expand All @@ -63,7 +63,7 @@ jobs:
with:
name: Nightly Python Release
cache-key: python-nightly
run: ./go py:release['nightly', '--config=release']
run: ./go py:release['nightly','--config=release']
secrets: inherit
on-python-failure:
name: On Python Failure
Expand All @@ -90,7 +90,7 @@ jobs:
with:
name: Nightly Java Release
cache-key: java-nightly
run: ./go publish-maven-snapshot
run: ./go java:release[nightly,--config=release]
secrets: inherit
on-java-failure:
name: On Java Failure
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
name: Nightly DotNet Release
cache-key: dotnet-nightly
dotnet-version: '6.x'
run: ./go dotnet:release['nightly', '--config=release']
run: ./go dotnet:release['nightly','--config=release']
secrets: inherit
on-dotnet-failure:
name: On .NET Failure
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
echo "//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}" >> ~/.npmrc
echo "@seleniumhq:registry=https://npm.pkg.github.com" >> ~/.npmrc
echo "always-auth=true" >> ~/.npmrc
./go node:release['nightly', '--config=release']
./go node:release['nightly','--config=release']
secrets: inherit
on-javascript-failure:
name: On JavaScript Failure
Expand Down

0 comments on commit b3da45e

Please sign in to comment.