We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4e7299 commit 04f9952Copy full SHA for 04f9952
1 file changed
.github/workflows/build.yml
@@ -98,8 +98,15 @@ jobs:
98
run: |
99
gn gen out/${{ matrix.os }}-${{ matrix.arch }}
100
autoninja -C out/${{ matrix.os }}-${{ matrix.arch }}
101
- - name: Upload build
+ - name: Upload builds
102
uses: actions/upload-artifact@v4
103
with:
104
name: ANGLE-${{ matrix.os }}-${{ matrix.arch }}
105
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