Skip to content

Commit

Permalink
chore: add missing steps for windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
7mochi committed Sep 13, 2024
1 parent 2faa554 commit a917270
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,22 @@ jobs:
msbuild multiplayer.sln -target:ag /p:Configuration=Release
cd $GITHUB_WORKSPACE
- name: Build LLHL proyect (Windows) with node-amxxpack
run: |
cd llhl && make init-windows && make build-windows
- name: Download latest AMX Mod X 1.9
run: |
wget "https://www.amxmodx.org/latest.php?version=1.9&os=windows&package=base" -O amxx.zip
unzip amxx.zip -d llhl/dist/ag
- name: Create folder and move LLHL AGMOD .dll
run: |
mkdir llhl/dist/ag/dlls
move llhl-agmod/dlls/ag.dll llhl/dist/ag/ag.dll
move llhl-agmod/network/delta.lst llhl/dist/ag/delta.lst
- name: Prepare releases in zip
run: |
cd llhl/dist && zip -r ../llhl-${{github.ref_name}}-linux.zip *

0 comments on commit a917270

Please sign in to comment.