From 3f0537473941dcf2c9d8da67921983b45f216ddf Mon Sep 17 00:00:00 2001 From: nullprop Date: Thu, 25 Apr 2024 05:52:45 +0300 Subject: [PATCH] Upload workflow artifacts --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5959a54..0188b18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: runs-on: ${{matrix.os}} steps: - name: Checkout this repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: 'hl2sdk-starter' submodules: 'recursive' @@ -26,4 +26,9 @@ jobs: meson setup -D arch=${{matrix.arch}} -D buildtype=${{matrix.buildtype}} build && cd build && 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