Skip to content

Commit 9338693

Browse files
committed
Add print post-build environment
1 parent 1e9fb25 commit 9338693

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -84,22 +84,22 @@ jobs:
8484
env:
8585
cache-name: cache-gradlew-v8.9
8686
with:
87-
path: ~/.gradle/wrapper/dists
87+
path: $HOME/.gradle
8888
key: ${{ runner.os }}-build-${{ env.cache-name }}
8989

90-
- name: "Print environment"
91-
run: |
92-
echo HOME = $HOME
93-
echo HOME = ~
94-
tree ~/.gradle
95-
9690
- name: "Build Java"
9791
run: |
9892
cd $GITHUB_WORKSPACE/java/wsgup
9993
chmod a+x gradlew
10094
./gradlew build --no-daemon --console=plain
10195
mkdir -p /tmp/upload/java
10296
unzip app/build/distributions/app.zip -d /tmp/upload/java
97+
98+
- name: "Print post-build environment"
99+
run: |
100+
echo HOME = $HOME
101+
echo HOME = ~
102+
tree $HOME/.gradle
103103
104104
- name: "Build JavaScript/Node.js"
105105
run: |

0 commit comments

Comments
 (0)