Skip to content

Commit

Permalink
Build nuki bridge firmware nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed Aug 12, 2024
1 parent 1f6faac commit 869a522
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,21 @@ jobs:
- name: Install ESPHome
run: pip install --pre --user esphome

- name: Compile Release Firmware
- name: Compile Stock Firmware
working-directory: firmware
run: |
esphome compile doorman-stock.yaml
mkdir -p bin
cp .esphome/build/doorman-s3/.pioenvs/doorman-s3/firmware.factory.bin bin/firmware-factory.bin
cp .esphome/build/doorman-s3/.pioenvs/doorman-s3/firmware.bin bin/firmware.bin
mv .esphome/build/doorman-s3/.pioenvs/doorman-s3/firmware.factory.bin bin/stock-firmware-factory.bin
mv .esphome/build/doorman-s3/.pioenvs/doorman-s3/firmware.bin bin/stock-firmware.bin
- name: Compile Nuki Bridge Firmware
working-directory: firmware
run: |
esphome compile doorman-nuki-bridge.yaml
mkdir -p bin
mv .esphome/build/doorman-s3/.pioenvs/doorman-s3/firmware.factory.bin bin/nuki-bridge-firmware-factory.bin
mv .esphome/build/doorman-s3/.pioenvs/doorman-s3/firmware.bin bin/nuki-bridge-firmware.bin
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 869a522

Please sign in to comment.