Updated mapbase_build-base.yml

This commit is contained in:
Blixibon 2022-10-27 01:26:32 -05:00
parent 0b70acff08
commit 2214301694

View File

@ -142,7 +142,7 @@ jobs:
# -------------------------------------------------------------------- # --------------------------------------------------------------------
- name: Publish Windows game DLLs - name: Publish Windows game DLLs
if: inputs.project-group == 'all' || inputs.project-group == 'game' if: inputs.project-group == 'game'
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: 'Windows Game DLLs (server & client.dll) [${{ inputs.configuration }}]' name: 'Windows Game DLLs (server & client.dll) [${{ inputs.configuration }}]'
@ -254,12 +254,16 @@ jobs:
# ${{inputs.branch}}/game/bin/vrad_dll.so # ${{inputs.branch}}/game/bin/vrad_dll.so
# if-no-files-found: error # if-no-files-found: error
# For now, don't publish the .dbg files even though we publish .pdb files on Windows
# (they're too big)
- name: Publish everything (Linux) - name: Publish everything (Linux)
if: inputs.project-group == 'all' if: inputs.project-group == 'all'
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: 'Everything (Linux) [${{ inputs.configuration }}]' name: 'Everything (Linux) [${{ inputs.configuration }}]'
path: | path: |
${{inputs.branch}}/game/bin ${{inputs.branch}}/game/bin/*.so
${{inputs.branch}}/game/mod_*/bin !${{inputs.branch}}/game/bin/*_srv.so
${{inputs.branch}}/game/mod_*/bin/*.so
!${{inputs.branch}}/game/mod_*/bin/*_srv.so
if-no-files-found: error if-no-files-found: error