Skip to content

Commit

Permalink
change repo branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason2866 committed Nov 17, 2023
1 parent a264d96 commit 3cfdb1d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch: # Manually start a workflow
push:
branches:
- C2_test
- factory
paths-ignore:
- '.github/**' # Ignore changes towards the .github directory
- '*.md'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: PyPi Publish
on:
workflow_dispatch: # Manually start Publishing
push:
branches:
- factory
tags:
- "v*.*.*"

Expand Down
8 changes: 4 additions & 4 deletions esp_flasher/const.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import re

__version__ = "2.1.0"
__version__ = "2.2.0"

ESP32_DEFAULT_OTA_DATA = (
"https://raw.githubusercontent.com/Jason2866/ESP_Flasher/C2_test/"
"https://raw.githubusercontent.com/Jason2866/ESP_Flasher/factory/"
"partitions/boot_app0.bin"
)
ESP32_DEFAULT_BOOTLOADER_FORMAT = (
"https://raw.githubusercontent.com/Jason2866/ESP_Flasher/C2_test/"
"https://raw.githubusercontent.com/Jason2866/ESP_Flasher/factory/"
"bootloader/$MODEL$/bin/bootloader_$FLASH_MODE$_$FLASH_FREQ$.elf"
)
ESP32_DEFAULT_PARTITIONS = (
"https://raw.githubusercontent.com/Jason2866/ESP_Flasher/C2_test/"
"https://raw.githubusercontent.com/Jason2866/ESP_Flasher/factory/"
"partitions/partitions.$MODEL$.bin"
)
ESP32_SAFEBOOT_SERVER = (
Expand Down

0 comments on commit 3cfdb1d

Please sign in to comment.