Skip to content

Commit 040037d

Browse files
authored
Fix workflow for PRs
1 parent 23037c2 commit 040037d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/reproducible-build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ jobs:
1919
uses: actions/setup-java@v1
2020
with:
2121
java-version: 11
22+
- name: Prepare Gradle Enterprise credentials
23+
shell: bash
24+
run: |
25+
mkdir -p $HOME/.gradle/enterprise/
26+
echo "${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}" > $HOME/.gradle/enterprise/keys.properties
2227
- name: Build and compare checksums
2328
shell: bash
24-
env:
25-
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
2629
run: |
2730
./src/checkBuildReproducibility.sh

0 commit comments

Comments
 (0)