From 24276d8057d1a126af3f91ac0551a43f39f5bd66 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Mon, 1 Jul 2024 10:50:41 -0500 Subject: [PATCH] use wget instead of curl for geolocation download --- .github/workflows/build_application.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_application.yml b/.github/workflows/build_application.yml index 27beff2a..b0acf9b2 100644 --- a/.github/workflows/build_application.yml +++ b/.github/workflows/build_application.yml @@ -9,6 +9,7 @@ on: - Data/** - SharedLibraryCore/** - Plugins/** + - .github/workflows/build_application.yml pull_request: branches: [ develop ] paths: @@ -167,7 +168,7 @@ jobs: - 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 + wget -O ${{ env.outputFolder }}/Resources/GeoLite2-Country.mmdb https://github.com/P3TERX/GeoLite.mmdb/raw/download/GeoLite2-Country.mmdb - name: Clean up publish files run: |