Skip to content

Commit f58448d

Browse files
committed
fixes path
1 parent 0897678 commit f58448d

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build-and-publish.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,14 @@ jobs:
122122

123123
- name: Build and stage native libraries
124124
run: |
125+
echo "$(pwd)"
125126
./mvnw -B -U \
126127
-pl resolver-dns-native-macos,transport-native-unix-common,transport-native-kqueue \
127128
deploy \
128129
-DskipTests \
129-
-DaltDeploymentRepository=local-staging::default::file:///root/local-staging
130+
-DaltDeploymentRepository=local-staging::default::file:///$(pwd)/local-staging
131+
find $(pwd)/local-staging
132+
find ~/local-staging
130133
131134
- name: Upload local staging directory
132135
uses: actions/upload-artifact@v4
@@ -171,10 +174,13 @@ jobs:
171174

172175
- name: Build and stage native libraries
173176
run: |
177+
echo "$(pwd)"
174178
./mvnw -B -Pmac-m1-cross-compile deploy \
175179
-pl resolver-dns-native-macos,transport-native-unix-common,transport-native-kqueue \
176180
-DskipTests \
177-
-DaltDeploymentRepository=local-staging::default::file:///root/local-staging
181+
-DaltDeploymentRepository=local-staging::default::file:///$(pwd)/local-staging
182+
find $(pwd)/local-staging
183+
find ~/local-staging
178184
179185
- name: Upload local staging directory
180186
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)