Skip to content

Commit 99ffe00

Browse files
committed
Add access key to all jobs
1 parent e8e26ad commit 99ffe00

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build-verification.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88
workflow_dispatch:
99

1010
jobs:
11-
env:
12-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1311
generate_versions:
1412
name: Generate versions
1513
runs-on: ubuntu-latest
14+
env:
15+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
1616
steps:
1717
- uses: actions/checkout@v2
1818
- uses: gradle/gradle-build-action@v2
@@ -28,6 +28,8 @@ jobs:
2828
sanity_check:
2929
name: Sanity check
3030
runs-on: ubuntu-latest
31+
env:
32+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
3133
steps:
3234
- uses: actions/checkout@v2
3335
- uses: actions/setup-java@v2
@@ -42,6 +44,8 @@ jobs:
4244
name: Android version tests
4345
needs: [ generate_versions, sanity_check ]
4446
runs-on: ubuntu-latest
47+
env:
48+
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }}
4549
strategy:
4650
fail-fast: false
4751
matrix:

0 commit comments

Comments
 (0)