Skip to content

Commit 6ef0029

Browse files
committed
Fix incorrect passing in of /Users/jadecarino in Test Simbank workflow
Signed-off-by: Jade Carino <carino_jade@yahoo.co.uk>
1 parent ddc70b5 commit 6ef0029

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,15 @@ jobs:
9696
# If this workflow was called after a Main build, it will share the github.event_name
9797
# with the calling workflow, which is 'push'. Download the artifacts from that build.
9898
- name: Ensure local Maven repo exists
99-
run: mkdir -p "$HOME/.m2/repository"
99+
env:
100+
HOME: /Users/runner
101+
run: mkdir -p ${{ env.HOME }}/.m2/repository
100102

101103
- name: Download SimBank from Main Build
102104
if: ${{ github.event_name == 'push' }}
103105
uses: actions/download-artifact@v4
106+
env:
107+
HOME: /Users/runner
104108
with:
105109
name: simplatform
106110
path: ${{ env.HOME }}/.m2/repository

0 commit comments

Comments
 (0)