Skip to content

Commit 02acaa5

Browse files
authored
Use gnu tar in osx build (#642)
Should hopefully fix #641
1 parent 46ea058 commit 02acaa5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ jobs:
6969
run: |
7070
if ("${{ matrix.os }}" -like 'windows*') {
7171
7z a -tzip ..\dcd.zip dcd-client.exe dcd-server.exe
72+
} elseif ("${{ matrix.os }}" -like 'macos*') {
73+
gtar -cvzf ../dcd.tar.gz dcd-client dcd-server
7274
} else {
7375
tar -cvzf ../dcd.tar.gz dcd-client dcd-server
7476
}

0 commit comments

Comments
 (0)