From b911a6728750e001be6f295176aa3575b0559302 Mon Sep 17 00:00:00 2001 From: RaidMax Date: Mon, 1 Jul 2024 10:15:25 -0500 Subject: [PATCH] add automatic download of newest geolocation database to build action --- .github/workflows/build_application.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build_application.yml b/.github/workflows/build_application.yml index 750b412a..27beff2a 100644 --- a/.github/workflows/build_application.yml +++ b/.github/workflows/build_application.yml @@ -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