fixed shared object suffx for 64bits linux extension

This commit is contained in:
Valmo Trindade
2025-01-04 22:19:02 -03:00
parent d55e898127
commit fc975f53ce
3 changed files with 30 additions and 29 deletions

View File

@@ -1,8 +1,8 @@
name: Pack_beta
name: Publish
on:
push:
branches: [monorepo]
pull_request:
branches: [ main ]
jobs:
package_application:
@@ -87,7 +87,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: x86_64-unknown-linux-gnu
- run: mv ./libarmatak.so ./armatak.so
- run: mv ./libarmatak.so ./armatak_x64.so
- name: Download Android Application Installer
uses: actions/download-artifact@v4
with:

View File

@@ -87,7 +87,7 @@ jobs:
uses: actions/download-artifact@v4
with:
name: x86_64-unknown-linux-gnu
- run: mv ./libarmatak.so ./armatak.so
- run: mv ./libarmatak.so ./armatak_x64.so
- name: Download Android Application Installer
uses: actions/download-artifact@v4
with:

View File

@@ -3,6 +3,7 @@
// function description: Receives a player's unit as param and return the information array for SIMTAK
params["_unit"];
private _location = (getPos _unit) call armatak_fnc_convert_location;
private _atak_latitude = _location select 0;