Skip to content

Commit 7825792

Browse files
committed
[ci] Setting secrets on the bazel.yml
1 parent ad8921b commit 7825792

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/bazel.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
runs-on: ${{ inputs.os == 'windows' && 'windows-2019' || format('{0}-latest', inputs.os) }}
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
52+
SEL_M2_USER: ${{ secrets.SEL_M2_USER }}
53+
SEL_M2_PASS: ${{ secrets.SEL_M2_PASS }}
5254
steps:
5355
- name: Checkout source tree
5456
uses: actions/checkout@v3

.github/workflows/nightly.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@ on:
1717
- java
1818
- ruby
1919

20-
env:
21-
SEL_M2_USER: ${{ secrets.SEL_M2_USER }}
22-
SEL_M2_PASS: ${{ secrets.SEL_M2_PASS }}
23-
2420
jobs:
2521
ruby:
2622
if: inputs.language == 'ruby'
@@ -48,3 +44,14 @@ jobs:
4844
name: Release
4945
cache-key: java-nightly
5046
run: ./go publish-maven-snapshot
47+
48+
grid:
49+
if: inputs.language == 'java'
50+
name: Grid
51+
uses: ./.github/workflows/bazel.yml
52+
with:
53+
name: Release
54+
cache-key: grid-nightly
55+
run: |
56+
echo build --stamp >>.bazelrc.local
57+
./go prep-release-zip

0 commit comments

Comments
 (0)