-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
trying to resolve release auto build check error
- Loading branch information
1 parent
0ead251
commit b2d0884
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.