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

use wget instead of curl for geolocation download

This commit is contained in:
RaidMax 2024-07-01 10:50:41 -05:00
parent 19e5e06d5d
commit 24276d8057

View File

@ -9,6 +9,7 @@ on:
- Data/** - Data/**
- SharedLibraryCore/** - SharedLibraryCore/**
- Plugins/** - Plugins/**
- .github/workflows/build_application.yml
pull_request: pull_request:
branches: [ develop ] branches: [ develop ]
paths: paths:
@ -167,7 +168,7 @@ jobs:
- name: Download geolocation database - name: Download geolocation database
run: | run: |
mkdir -p ${{ env.outputFolder }}/Resources 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 wget -O ${{ env.outputFolder }}/Resources/GeoLite2-Country.mmdb https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-Country.mmdb
- name: Clean up publish files - name: Clean up publish files
run: | run: |