We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6596291 commit cafcbd1Copy full SHA for cafcbd1
.github/workflows/github-packages-publish.yml
@@ -37,10 +37,13 @@ jobs:
37
run: echo ${{ secrets.GPG_PASSPHRASE }} | gpg --batch --yes --pinentry-mode loopback --passphrase-fd 0 --export-secret-keys -o gpg_key.ring
38
39
- name: Restore gradle.properties
40
+ env:
41
+ GRADLE_PROPERTIES: ${{ secrets.GRADLE_PROPERTIES }}
42
+ shell: bash
43
run: |
44
mkdir -p ~/.gradle/
- export GRADLE_USER_HOME=~/.gradle
- echo ${{ secrets.GRADLE_PROPERTIES }} > ~/.gradle/gradle.properties
45
+ echo "GRADLE_USER_HOME=${HOME}/.gradle" >> $GITHUB_ENV
46
+ echo "${GRADLE_PROPERTIES}" > ~/.gradle/gradle.properties
47
48
- name: Set up JDK 17
49
uses: actions/setup-java@v4
0 commit comments