Skip to content

Commit

Permalink
trying to resolve release auto build check error
Browse files Browse the repository at this point in the history
  • Loading branch information
serifpersia committed Mar 12, 2024
1 parent 0ead251 commit b2d0884
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash

# 1) build the project
. .github/scripts/build_jar.sh "build/ESP32PartitionTool.jar"
[ $? -eq 0 ] || die "Unable to build jar"

# 2) build the Arduino package
.github/scripts/create_arduino_package.sh $jar_file
[ $? -eq 0 ] || die "Arduino Package creation failed"

# 3) build the Platformio package
.github/scripts/create_platformio_package.sh $jar_file
[ $? -eq 0 ] || die "Platformio Package creation failed"
File renamed without changes.
File renamed without changes.

0 comments on commit b2d0884

Please sign in to comment.