Upload workflow artifacts
This commit is contained in:
parent
68fd122634
commit
3f05374739
1 changed files with 6 additions and 1 deletions
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
runs-on: ${{matrix.os}}
|
runs-on: ${{matrix.os}}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout this repo
|
- name: Checkout this repo
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
path: 'hl2sdk-starter'
|
path: 'hl2sdk-starter'
|
||||||
submodules: 'recursive'
|
submodules: 'recursive'
|
||||||
|
@ -26,4 +26,9 @@ jobs:
|
||||||
meson setup -D arch=${{matrix.arch}} -D buildtype=${{matrix.buildtype}} build &&
|
meson setup -D arch=${{matrix.arch}} -D buildtype=${{matrix.buildtype}} build &&
|
||||||
cd build &&
|
cd build &&
|
||||||
meson compile
|
meson compile
|
||||||
|
- name: Upload plugin artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: ${{matrix.os}}_${{matrix.arch}}_${{matrix.buildtype}}_${{GITHUB_SHA}}
|
||||||
|
path: ${{ github.workspace }}/hl2sdk-starter/build/src/server_plugin.so
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue