Skip to content

Commit

Permalink
Merge pull request #46 from youseetoo/beniroquai-patch-8
Browse files Browse the repository at this point in the history
Update build_platformio_xiao_motor.yaml
  • Loading branch information
beniroquai authored Nov 16, 2024
2 parents 908ecd2 + a898d74 commit 49f17fc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_platformio_xiao_motor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,26 +48,26 @@ jobs:
regex: false

- name: Run PlatformIO
run: pio run --environment UC2_3_I2CSlaveMotorX -v # Run the specific environment
run: pio run --environment UC2_3_Xiao_Slave_Motor -v # Run the specific environment

- name: merge into one binary
run: |
dir .pio/build/UC2_3_I2CSlaveMotorX/
mv .pio/build/UC2_3_I2CSlaveMotorX/*.bin build/
dir .pio/build/UC2_3_Xiao_Slave_Motor/
mv .pio/build/UC2_3_Xiao_Slave_Motor/*.bin build/
cd build
python -m esptool --chip esp32s3 merge_bin -o UC2_3_I2CSlaveMotorX.bin --flash_mode dio --flash_freq 40m --flash_size 4MB 0x1000 bootloader.bin 0x8000 partitions.bin 0xe000 boot_app0.bin 0x10000 firmware.bin
python -m esptool --chip esp32s3 merge_bin -o UC2_3_Xiao_Slave_Motor.bin --flash_mode dio --flash_freq 40m --flash_size 4MB 0x1000 bootloader.bin 0x8000 partitions.bin 0xe000 boot_app0.bin 0x10000 firmware.bin
- uses: actions/upload-artifact@v3
with:
name: merged-firmware
path: build/UC2_3_I2CSlaveMotorX.bin
path: build/UC2_3_Xiao_Slave_Motor.bin

- name: Push to youseetoo Webtool
uses: dmnemec/copy_file_to_another_repo_action@main
env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
with:
source_file: 'build/UC2_3_I2CSlaveMotorX.bin'
source_file: 'build/UC2_3_Xiao_Slave_Motor.bin'
destination_repo: 'youseetoo/youseetoo.github.io'
destination_folder: 'static/firmware_build'
user_email: '[email protected]'
Expand Down

0 comments on commit 49f17fc

Please sign in to comment.