Skip to content

Commit d8140f7

Browse files
committed
Fix(mac): Common environment variables
1 parent c9780be commit d8140f7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,12 @@ jobs:
140140
pattern: native_libs-*
141141
path: ${{env.NATIVE_LIB_LOCATION}}
142142
merge-multiple: true
143+
143144
- name: List the built artifacts
144-
run: ls -lhtR
145+
run: |
146+
pwd
147+
ls -lhtR
148+
145149
working-directory: ${{env.NATIVE_LIB_LOCATION}}
146150

147151
- name: Test for ${{ matrix.os }} ${{ matrix.java }}
@@ -153,7 +157,7 @@ jobs:
153157
echo -n
154158
fi
155159
156-
echo ${{env.NATIVE_LIB_LOCATION}}
160+
echo ${NATIVE_LIB_LOCATION}
157161
pwd
158162
159163
sbt +assembly

0 commit comments

Comments
 (0)