mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2025-04-20 07:41:30 +00:00
Smaller SD card ZIP (#1257)
* Update create_nightly_release.yml * Update create_stable_release.yml
This commit is contained in:
parent
63be4de418
commit
006e4c9fce
13
.github/workflows/create_nightly_release.yml
vendored
13
.github/workflows/create_nightly_release.yml
vendored
@ -47,6 +47,9 @@ 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: Create Small SD Card ZIP - No World Map
|
||||||
|
run: |
|
||||||
|
mkdir -p sdcard/FIRMWARE && cp build/firmware/portapack-h1_h2-mayhem.bin sdcard/FIRMWARE/portapack-mayhem_${{ steps.version_date.outputs.date }}.bin && zip -r sdcard-no-map.zip sdcard
|
||||||
- name: Download world map
|
- name: Download world map
|
||||||
run: |
|
run: |
|
||||||
wget https://github.com/eried/portapack-mayhem/releases/download/world_map/world_map.zip
|
wget https://github.com/eried/portapack-mayhem/releases/download/world_map/world_map.zip
|
||||||
@ -103,3 +106,13 @@ jobs:
|
|||||||
asset_path: ./sdcard.zip
|
asset_path: ./sdcard.zip
|
||||||
asset_name: mayhem_nightly_${{ steps.version_date.outputs.date }}_COPY_TO_SDCARD.zip
|
asset_name: mayhem_nightly_${{ steps.version_date.outputs.date }}_COPY_TO_SDCARD.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
|
- name: Upload SD Card Assets - No Map
|
||||||
|
id: upload-sd-card-asset-no-map
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./sdcard-no-map.zip
|
||||||
|
asset_name: mayhem_nightly_${{ steps.version_date.outputs.date }}_COPY_TO_SDCARD-no-world-map.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
13
.github/workflows/create_stable_release.yml
vendored
13
.github/workflows/create_stable_release.yml
vendored
@ -31,6 +31,9 @@ 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: Create Small SD Card ZIP - No World Map
|
||||||
|
run: |
|
||||||
|
mkdir -p sdcard/FIRMWARE && cp build/firmware/portapack-h1_h2-mayhem.bin sdcard/FIRMWARE/portapack-mayhem_${{ steps.version.outputs.version }}.bin && zip -r sdcard-no-map.zip sdcard
|
||||||
- name: Download world map
|
- name: Download world map
|
||||||
run: |
|
run: |
|
||||||
wget https://github.com/eried/portapack-mayhem/releases/download/world_map/world_map.zip
|
wget https://github.com/eried/portapack-mayhem/releases/download/world_map/world_map.zip
|
||||||
@ -96,4 +99,14 @@ jobs:
|
|||||||
asset_path: ./sdcard.zip
|
asset_path: ./sdcard.zip
|
||||||
asset_name: mayhem_${{ steps.version.outputs.version }}_COPY_TO_SDCARD.zip
|
asset_name: mayhem_${{ steps.version.outputs.version }}_COPY_TO_SDCARD.zip
|
||||||
asset_content_type: application/zip
|
asset_content_type: application/zip
|
||||||
|
- name: Upload SD Card Assets - No Map
|
||||||
|
id: upload-sd-card-asset-no-map
|
||||||
|
uses: actions/upload-release-asset@v1
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
with:
|
||||||
|
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||||
|
asset_path: ./sdcard-no-map.zip
|
||||||
|
asset_name: mayhem_${{ steps.version.outputs.version }}_COPY_TO_SDCARD-no-world-map.zip
|
||||||
|
asset_content_type: application/zip
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user