Skip to content

Commit

Permalink
ci: Build the merged binary and include in artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
johnny9 committed Oct 4, 2023
1 parent 43c0a2a commit 9797c1a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,25 @@ jobs:
uses: espressif/esp-idf-ci-action@v1
with:
esp_idf_version: v5.1
target: esp32s2
target: esp32s3
command: GITHUB_ACTIONS="true" idf.py build
path: '.'
- uses: actions/setup-python@v4
with:
python-version: '3.9'
cache: 'pip' # caching pip dependencies
- run: pip install esptool
- name: "Create factory/merged image"
run: "./merge_bin.sh ./esp-miner-merged.bin"
- name: upload esp-miner-merged.bin
uses: actions/upload-artifact@v3
with:
name: esp-miner-factory.bin
path: ./esp-miner-merged.bin
- name: upload esp-miner.bin
uses: actions/upload-artifact@v3
with:
name: esp-miner.bin
name: esp-miner-ota.bin
path: ./build/esp-miner.bin
- name: upload www.bin
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 9797c1a

Please sign in to comment.