From 5972ec53e8b2ed8872ec59d4f3bf8e6814a8556e Mon Sep 17 00:00:00 2001 From: katursis Date: Tue, 10 Jan 2023 21:06:36 +0000 Subject: [PATCH] Fix upload artifacts workflow --- .github/workflows/build.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2d260c3..f4e042a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,13 +43,17 @@ jobs: cmake -DCMAKE_BUILD_TYPE=Release .. -G "Visual Studio 16 2019" -A Win32 cmake --build . --config Release - - name: Upload artifacts + - name: Upload artifacts (part 1) + uses: actions/upload-artifact@v3 + with: + name: pawnraknet-${{ env.PLUGIN_VERSION }}-win32 + path: build/Release/pawnraknet.dll + + - name: Upload artifacts (part 2) uses: actions/upload-artifact@v3 with: name: pawnraknet-${{ env.PLUGIN_VERSION }}-win32 - path: | - src/Pawn.RakNet.inc - build/Release/pawnraknet.dll + path: src/Pawn.RakNet.inc build-linux-release: runs-on: ubuntu-18.04