We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e9fb25 commit 9338693Copy full SHA for 9338693
.github/workflows/build.yml
@@ -84,22 +84,22 @@ jobs:
84
env:
85
cache-name: cache-gradlew-v8.9
86
with:
87
- path: ~/.gradle/wrapper/dists
+ path: $HOME/.gradle
88
key: ${{ runner.os }}-build-${{ env.cache-name }}
89
90
- - name: "Print environment"
91
- run: |
92
- echo HOME = $HOME
93
- echo HOME = ~
94
- tree ~/.gradle
95
-
96
- name: "Build Java"
97
run: |
98
cd $GITHUB_WORKSPACE/java/wsgup
99
chmod a+x gradlew
100
./gradlew build --no-daemon --console=plain
101
mkdir -p /tmp/upload/java
102
unzip app/build/distributions/app.zip -d /tmp/upload/java
+
+ - name: "Print post-build environment"
+ run: |
+ echo HOME = $HOME
+ echo HOME = ~
+ tree $HOME/.gradle
103
104
- name: "Build JavaScript/Node.js"
105
0 commit comments