Skip to content

Commit

Permalink
Fix environment variable reference with hard-coded path
Browse files Browse the repository at this point in the history
  • Loading branch information
gyk4j committed Jul 31, 2024
1 parent 9338693 commit d43f2c2
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
env:
cache-name: cache-gradlew-v8.9
with:
path: $HOME/.gradle
path: /home/runner/.gradle
key: ${{ runner.os }}-build-${{ env.cache-name }}

- name: "Build Java"
Expand All @@ -94,12 +94,6 @@ jobs:
./gradlew build --no-daemon --console=plain
mkdir -p /tmp/upload/java
unzip app/build/distributions/app.zip -d /tmp/upload/java
- name: "Print post-build environment"
run: |
echo HOME = $HOME
echo HOME = ~
tree $HOME/.gradle
- name: "Build JavaScript/Node.js"
run: |
Expand Down

0 comments on commit d43f2c2

Please sign in to comment.