mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 09:06:46 +00:00
Clarify packaging temp dir
Co-authored-by: Valorith <76063792+Valorith@users.noreply.github.com>
This commit is contained in:
@@ -30,12 +30,12 @@ jobs:
|
||||
- name: Package linux binaries
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
install -d /tmp/bin
|
||||
install -d /tmp/package-bin
|
||||
for bin in world zone ucs loginserver queryserv shared_memory eqlaunch; do
|
||||
cp "build/bin/${bin}" "/tmp/bin/${bin}"
|
||||
chmod +x "/tmp/bin/${bin}"
|
||||
cp "build/bin/${bin}" "/tmp/package-bin/${bin}"
|
||||
chmod +x "/tmp/package-bin/${bin}"
|
||||
done
|
||||
tar -czf "$GITHUB_WORKSPACE/eqemu-linux-bins.tgz" -C /tmp/bin .
|
||||
tar -czf "$GITHUB_WORKSPACE/eqemu-linux-bins.tgz" -C /tmp/package-bin .
|
||||
|
||||
- name: Smoke test linux binaries
|
||||
working-directory: ${{ github.workspace }}
|
||||
|
||||
Reference in New Issue
Block a user