Skip to content

Commit cd5f4f6

Browse files
committed
fix build file paths
1 parent 93d4b02 commit cd5f4f6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
if: startsWith(matrix.os, 'windows')
3434
run: |
3535
mkdir -p dist/win-x64
36+
cp build/yogacore.dll dist/win-x64/yoga.dll
3637
cp -a build/ dist/win-x64/
3738
3839
- name: Build (x86)
@@ -43,19 +44,19 @@ jobs:
4344
if: startsWith(matrix.os, 'windows')
4445
run: |
4546
mkdir -p dist/win-x86
46-
cp -a build/ dist/win-x86/
47+
cp build/Release/yogacore.dll dist/win-x86/yoga.dll
4748
4849
- name: Move MacOS files
4950
if: startsWith(matrix.os, 'macos')
5051
run: |
5152
mkdir -p dist/osx
52-
cp -a build/ dist/osx/
53+
cp build/libyogacore.dylib dist/osx/libyoga.dylib
5354
5455
- name: Move Ubuntu files
5556
if: startsWith(matrix.os, 'ubuntu')
5657
run: |
5758
mkdir -p dist/linux
58-
cp -a build/ dist/linux/
59+
cp build/libyogacore.so dist/linux/libyoga.so
5960
6061
- name: Upload Binaries
6162
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)