We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddc70b5 commit 6ef0029Copy full SHA for 6ef0029
.github/workflows/test.yaml
@@ -96,11 +96,15 @@ jobs:
96
# If this workflow was called after a Main build, it will share the github.event_name
97
# with the calling workflow, which is 'push'. Download the artifacts from that build.
98
- name: Ensure local Maven repo exists
99
- run: mkdir -p "$HOME/.m2/repository"
+ env:
100
+ HOME: /Users/runner
101
+ run: mkdir -p ${{ env.HOME }}/.m2/repository
102
103
- name: Download SimBank from Main Build
104
if: ${{ github.event_name == 'push' }}
105
uses: actions/download-artifact@v4
106
107
108
with:
109
name: simplatform
110
path: ${{ env.HOME }}/.m2/repository
0 commit comments