mirror of
https://github.com/lumapu/ahoy.git
synced 2025-05-12 00:16:42 +02:00
add github short SHA to artifact filename *fix*
This commit is contained in:
parent
0b24cca002
commit
1cea093d5b
1 changed files with 2 additions and 2 deletions
|
@ -28,12 +28,12 @@ def readVersion(path, infile):
|
|||
|
||||
os.mkdir(path + ".pio/build/out/")
|
||||
|
||||
versionout = version[:-1] + "_esp8266_debug_" + get_firmware_specifier_build_flag() + "".bin"
|
||||
versionout = version[:-1] + "_esp8266_debug_" + get_firmware_specifier_build_flag() + ".bin"
|
||||
src = path + ".pio/build/esp8266-debug/firmware.bin"
|
||||
dst = path + ".pio/build/out/" + versionout
|
||||
os.rename(src, dst)
|
||||
|
||||
versionout = version[:-1] + "_esp8266_release_" + get_firmware_specifier_build_flag() + "".bin"
|
||||
versionout = version[:-1] + "_esp8266_release_" + get_firmware_specifier_build_flag() + ".bin"
|
||||
src = path + ".pio/build/esp8266-release/firmware.bin"
|
||||
dst = path + ".pio/build/out/" + versionout
|
||||
os.rename(src, dst)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue