diff --git a/.github/workflows/create_nightly_release.yml b/.github/workflows/create_nightly_release.yml index d58affd2f..4b0ce554a 100644 --- a/.github/workflows/create_nightly_release.yml +++ b/.github/workflows/create_nightly_release.yml @@ -47,6 +47,12 @@ jobs: run: mkdir ${{ github.workspace }}/build - name: Run the Docker image run: docker run -e VERSION_STRING=${{ steps.version_date.outputs.date }} -i -v ${{ github.workspace }}:/havoc portapack-dev + - name: Download world map + run: | + wget https://github.com/eried/portapack-mayhem/releases/download/world_map/world_map.zip + - name: Unzip world map + run: | + unzip world_map.zip -d sdcard/ADSB - name: Create Firmware ZIP run: | zip -j firmware.zip build/firmware/portapack-h1_h2-mayhem.bin && cd flashing && zip -r ../firmware.zip * diff --git a/.github/workflows/create_stable_release.yml b/.github/workflows/create_stable_release.yml index 02a6c5994..17d51eac3 100644 --- a/.github/workflows/create_stable_release.yml +++ b/.github/workflows/create_stable_release.yml @@ -31,6 +31,12 @@ jobs: run: mkdir ${{ github.workspace }}/build - name: Run the Docker image run: docker run -e VERSION_STRING=${{ steps.version.outputs.version }} -i -v ${{ github.workspace }}:/havoc portapack-dev + - name: Download world map + run: | + wget https://github.com/eried/portapack-mayhem/releases/download/world_map/world_map.zip + - name: Unzip world map + run: | + unzip world_map.zip -d sdcard/ADSB - name: Create Firmware ZIP run: | zip -j firmware.zip build/firmware/portapack-h1_h2-mayhem.bin && cd flashing && zip -r ../firmware.zip *