Skip to content

Commit

Permalink
Fix upload artifacts workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
katursis committed Jan 10, 2023
1 parent a447263 commit 5972ec5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5972ec5

Please sign in to comment.