1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-07 21:58:06 -05:00

add automatic download of newest geolocation database to build action

This commit is contained in:
RaidMax 2024-07-01 10:15:25 -05:00
parent 5c3b792f17
commit b911a67287

View File

@ -164,6 +164,11 @@ jobs:
curl -s "$url" -o "$filePath"
done
- name: Download geolocation database
run: |
mkdir -p ${{ env.outputFolder }}/Resources
curl -s https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-Country.mmdb -o ${{ env.outputFolder }}/Resources/GeoLite2-Country.mmdb --clobber
- name: Clean up publish files
run: |
chmod +x ${{ github.workspace }}/Application/BuildScripts/PostBuild.sh