First Release

This commit is contained in:
VerstreuteSeele
2022-12-18 20:49:05 +01:00
parent 3004a3ed90
commit 97d307a589
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ def main():
new_build = ren
os.system(f"cd {Firmware_base} && ren {old_build} {new_build}")
os.system(f'git add * && git commit -m "{commit}"')
zipfile = shutil.make_archive(ren, 'zip', new_build)
zipfile = shutil.make_archive(os.path.join(Firmware_base, ren), 'zip', new_build)
print(zipfile)
input()
os.system(f'''gh release create {ren.split('"')[1].split('"')[0]} -R "ClaraCrazy/flipper-firmware" --generate-notes {zipfile}''')
+1 -1
View File
@@ -14,7 +14,7 @@ DEBUG = 0
# Suffix to add to files when building distribution
# If OS environment has DIST_SUFFIX set, it will be used instead
DIST_SUFFIX = "CC_CL-0003"
DIST_SUFFIX = "CC_CL-0004"
# Coprocessor firmware
COPRO_OB_DATA = "scripts/ob.data"