Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a45f60c09e | |||
| 93ad7ba411 | |||
| 592b44ee43 | |||
| 1f78fedcb3 |
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
@@ -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: |
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user