Skip to content

Commit 04f9952

Browse files
committed
workflow: Upload .so's seperately
1 parent b4e7299 commit 04f9952

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,15 @@ jobs:
9898
run: |
9999
gn gen out/${{ matrix.os }}-${{ matrix.arch }}
100100
autoninja -C out/${{ matrix.os }}-${{ matrix.arch }}
101-
- name: Upload build
101+
- name: Upload builds
102102
uses: actions/upload-artifact@v4
103103
with:
104104
name: ANGLE-${{ matrix.os }}-${{ matrix.arch }}
105105
path: out/${{ matrix.os }}-${{ matrix.arch }}
106+
- name: Upload shared library
107+
uses: actions/upload-artifact@v4
108+
with:
109+
name: ANGLE-${{ matrix.os }}-${{ matrix.arch }}.so
110+
path: |
111+
out/${{ matrix.os }}-${{ matrix.arch }}/lib*.so
112+
!out/${{ matrix.os }}-${{ matrix.arch }}/*.so.TOC

0 commit comments

Comments
 (0)