update actions

Signed-off-by: Peter Siegmund <peter@rdkr.com>
This commit is contained in:
Peter Siegmund
2024-05-31 10:50:14 +02:00
parent 0460e64bc2
commit 90a5afd77b
2 changed files with 7 additions and 4 deletions

View File

@@ -22,6 +22,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: ESP-IDF build
uses: espressif/esp-idf-ci-action@v1
with:

View File

@@ -21,15 +21,17 @@ jobs:
uses: actions/checkout@v4
with:
submodules: "recursive"
- name: ESP-IDF build
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: ${{ matrix.idf_ver }}
target: ${{ matrix.idf_target }}
path: ePaper-ESP-IDF
- name: Upload Firmware
id: upload
uses: JantHsueh/upload-file-action@master
uses: fjogeleit/http-request-action@v1
with:
url: ${{ secrets.UPLOAD_URL }}
fileForms: '{"file":"ePaper-ESP-IDF/build/firmware.bin"}'
url: "${{ secrets.UPLOAD_URL }}"
method: "POST"
files: '{ "file": "${{ github.workspace }}/ePaper-ESP-IDF/build/firmware.bin" }'