Upload workflow artifacts

This commit is contained in:
Lauri Räsänen 2024-04-25 05:52:45 +03:00
parent 68fd122634
commit 3f05374739

View file

@ -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