mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Automatically add world map to SD card files (#1022)
* Testing * Updated scripts * Updated removed testing file
This commit is contained in:
parent
fa0d229418
commit
edd8e7c3b9
6
.github/workflows/create_nightly_release.yml
vendored
6
.github/workflows/create_nightly_release.yml
vendored
@ -47,6 +47,12 @@ jobs:
|
|||||||
run: mkdir ${{ github.workspace }}/build
|
run: mkdir ${{ github.workspace }}/build
|
||||||
- name: Run the Docker image
|
- name: Run the Docker image
|
||||||
run: docker run -e VERSION_STRING=${{ steps.version_date.outputs.date }} -i -v ${{ github.workspace }}:/havoc portapack-dev
|
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
|
- name: Create Firmware ZIP
|
||||||
run: |
|
run: |
|
||||||
zip -j firmware.zip build/firmware/portapack-h1_h2-mayhem.bin && cd flashing && zip -r ../firmware.zip *
|
zip -j firmware.zip build/firmware/portapack-h1_h2-mayhem.bin && cd flashing && zip -r ../firmware.zip *
|
||||||
|
6
.github/workflows/create_stable_release.yml
vendored
6
.github/workflows/create_stable_release.yml
vendored
@ -31,6 +31,12 @@ jobs:
|
|||||||
run: mkdir ${{ github.workspace }}/build
|
run: mkdir ${{ github.workspace }}/build
|
||||||
- name: Run the Docker image
|
- name: Run the Docker image
|
||||||
run: docker run -e VERSION_STRING=${{ steps.version.outputs.version }} -i -v ${{ github.workspace }}:/havoc portapack-dev
|
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
|
- name: Create Firmware ZIP
|
||||||
run: |
|
run: |
|
||||||
zip -j firmware.zip build/firmware/portapack-h1_h2-mayhem.bin && cd flashing && zip -r ../firmware.zip *
|
zip -j firmware.zip build/firmware/portapack-h1_h2-mayhem.bin && cd flashing && zip -r ../firmware.zip *
|
||||||
|
Loading…
Reference in New Issue
Block a user