2 Commits

Author SHA1 Message Date
Myx
592b44ee43 fix: Test pipeline 2025-07-20 18:22:24 +02:00
1f78fedcb3 Update build.yml 2025-07-20 18:13:21 +02:00
2 changed files with 17 additions and 1 deletions

View File

@@ -94,6 +94,22 @@ jobs:
release_name: Release ${{ steps.semver.outputs.next }} release_name: Release ${{ steps.semver.outputs.next }}
draft: false draft: false
prerelease: false prerelease: false
- name: Zip the build for github release
if: ${{ github.event.inputs.create_release != 'false' }}
run: 7z a -tzip ./out/HomeScreen_Build_"{${{ steps.semver.outputs.next }}}".zip ./out/*
- name: Upload Release Asset
if: ${{ github.event.inputs.create_release != 'false' }}
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./out/HomeScreen_Build_"{${{ steps.semver.outputs.next }}}".zip
asset_name: Lunaris_${{steps.semver.outputs.patch}}.zip
asset_content_type: application/zip
- name: Generate appsettings.json - name: Generate appsettings.json
run: | run: |

View File

@@ -8,7 +8,7 @@ Core api and Esp32 code for displaying weather data and public transport informa
- Display public transport information - Display public transport information
- Display time and date - Display time and date
## Requirements ## Requirements 🫥
- ESP32 board - ESP32 board
- E-ink display (e.g. Waveshare 7.5 inch) - E-ink display (e.g. Waveshare 7.5 inch)