Compare commits

..

2 Commits

Author SHA1 Message Date
b87065b548
Changed filepath of Config 2023-07-30 20:28:57 +02:00
d86d54d2ec
fixed copy if version is already uploaded 2023-06-02 20:01:50 +02:00
3 changed files with 14 additions and 8 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
target* target*
source* source*
go-gluon-publish

View File

@ -21,7 +21,7 @@ func main() {
br := *branch br := *branch
version := readVersions(*branch) version := readVersions(*branch)
var source_dir_branch string = sdir + br + "/images/" var source_dir_branch string = sdir + br + "/images/"
var target_dir_branch string = tdir + br + "/images/" var target_dir_branch string = tdir + br + "/"
if is_firmware_folder(source_dir_branch) { if is_firmware_folder(source_dir_branch) {
//generate manifest file for branch //generate manifest file for branch

View File

@ -19,14 +19,19 @@ func release_branch(b string, sDir string, tDir string, dryrun bool, v string) {
} }
sVersion := GetGluonVersion(sDir) sVersion := GetGluonVersion(sDir)
tVersion := GetGluonVersion(tDir) tVersion := GetGluonVersion(tDir)
fmt.Println("Target Version: ", tVersion)
fmt.Println("Source Version: ", sVersion)
fmt.Println("Wanted Version: ", v)
//check wanted version in target //check wanted version in target
if tVersion != v { if tVersion == v {
log.Println("wanted version is already published!")
os.Exit(0)
}
log.Println("published version is outdated, try to update from source folder") log.Println("published version is outdated, try to update from source folder")
if sVersion != v { if sVersion != v {
log.Println("wanted Version is not availible in source folder") log.Println("wanted Version is not availible in source folder")
os.Exit(1) os.Exit(1)
} }
}
if newImages { if newImages {
// delete old firmware files in public folder // delete old firmware files in public folder
@ -76,7 +81,7 @@ func GetGluonVersion(path string) string {
} }
func readVersions(branch string) string { func readVersions(branch string) string {
filePath := "release_state.json" filePath := "/srv/fwuploads-tmp/bin/release_state.json"
v, err := ioutil.ReadFile(filePath) v, err := ioutil.ReadFile(filePath)
if err != nil { if err != nil {
log.Fatalln("Error reading version JSON file!") log.Fatalln("Error reading version JSON file!")