Skip to content

Commit a06e5f8

Browse files
committed
Add artifact upload to github actions.
1 parent f67ab3c commit a06e5f8

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/build.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ jobs:
2222
run: |
2323
cd build
2424
make config=release_x86_64
25+
- name: Archive artifact
26+
uses: actions/upload-artifact@v2
27+
with:
28+
name: renderer_bgfx_x86_64
29+
path: build/bin_x64/renderer_bgfx_x86_64.so
2530

2631
Windows:
2732
runs-on: windows-latest
@@ -45,3 +50,8 @@ jobs:
4550
run: |
4651
cd build
4752
make
53+
- name: Archive artifact
54+
uses: actions/upload-artifact@v2
55+
with:
56+
name: renderer_bgfx_x86
57+
path: build\bin_x86\renderer_bgfx_x86.dll

0 commit comments

Comments
 (0)