Skip to content

Commit

Permalink
Add artifact upload to github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpcy committed Nov 29, 2021
1 parent f67ab3c commit a06e5f8
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
run: |
cd build
make config=release_x86_64
- name: Archive artifact
uses: actions/upload-artifact@v2
with:
name: renderer_bgfx_x86_64
path: build/bin_x64/renderer_bgfx_x86_64.so

Windows:
runs-on: windows-latest
Expand All @@ -45,3 +50,8 @@ jobs:
run: |
cd build
make
- name: Archive artifact
uses: actions/upload-artifact@v2
with:
name: renderer_bgfx_x86
path: build\bin_x86\renderer_bgfx_x86.dll

0 comments on commit a06e5f8

Please sign in to comment.