mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-31 02:25:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Go
		
	
	
		
			Executable File
		
	
	
	
	
| // call from project root with
 | |
| // go run scripts/push_new_patch/main.go
 | |
| 
 | |
| // goreleaser expects a $GITHUB_TOKEN env variable to be defined
 | |
| // in order to push the release got github
 | |
| 
 | |
| package main
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"io/ioutil"
 | |
| 	"log"
 | |
| 	"os"
 | |
| 	"strconv"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/jesseduffield/lazygit/pkg/secureexec"
 | |
| )
 | |
| 
 | |
| func main() {
 | |
| 
 | |
| 	version, err := ioutil.ReadFile("VERSION")
 | |
| 	if err != nil {
 | |
| 		log.Panicln(err.Error())
 | |
| 	}
 | |
| 	stringVersion := string(version)
 | |
| 	fmt.Println("VERSION was " + stringVersion)
 | |
| 
 | |
| 	runCommand("git", "pull")
 | |
| 
 | |
| 	splitVersion := strings.Split(stringVersion, ".")
 | |
| 	patch := splitVersion[len(splitVersion)-1]
 | |
| 	newPatch, _ := strconv.Atoi(patch)
 | |
| 	splitVersion[len(splitVersion)-1] = strconv.FormatInt(int64(newPatch)+1, 10)
 | |
| 	newVersion := strings.Join(splitVersion, ".")
 | |
| 
 | |
| 	err = ioutil.WriteFile("VERSION", []byte(newVersion), 0644)
 | |
| 	if err != nil {
 | |
| 		log.Panicln(err.Error())
 | |
| 	}
 | |
| 
 | |
| 	runCommand("git", "add", "VERSION")
 | |
| 	runCommand("git", "commit", "-m", "bump version to "+newVersion, "--", "VERSION")
 | |
| 	runCommand("git", "push")
 | |
| 	runCommand("git", "tag", newVersion)
 | |
| 	runCommand("git", "push", "origin", newVersion)
 | |
| 	runCommand("goreleaser", "--rm-dist")
 | |
| 	runCommand("rm", "-rf", "dist")
 | |
| }
 | |
| 
 | |
| func runCommand(args ...string) {
 | |
| 	fmt.Println(strings.Join(args, " "))
 | |
| 	cmd := secureexec.Command(args[0], args[1:]...)
 | |
| 	cmd.Stdout = os.Stdout
 | |
| 	cmd.Stderr = os.Stderr
 | |
| 	err := cmd.Start()
 | |
| 	if err != nil {
 | |
| 		panic(err.Error())
 | |
| 	}
 | |
| 	err = cmd.Wait()
 | |
| 	if err != nil {
 | |
| 		panic(err.Error())
 | |
| 	}
 | |
| }
 |