File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 9999 run : echo "${{ needs.release.outputs.version }}" > src/gx/VERSION
100100
101101 - name : Build binary
102- shell : bash
103- run : |
104- if [ "$RUNNER_OS" = "Windows" ]; then
105- pyinstaller gx.spec --noupx
106- else
107- pyinstaller gx.spec
108- fi
102+ run : pyinstaller gx.spec
109103
110104 - name : Verify binary (Unix)
111105 if : runner.os != 'Windows'
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ exe = EXE(
5555 name = 'gx' ,
5656 debug = False ,
5757 bootloader_ignore_signals = False ,
58- strip = True ,
59- upx = True ,
58+ strip = False ,
59+ upx = False ,
6060 console = True ,
6161 icon = None ,
6262)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " gx-git"
7- version = " 1.5.1 "
7+ version = " 1.5.2 "
88description = " Git Productivity Toolkit"
99readme = " README.md"
1010license = {text = " MIT" }
You can’t perform that action at this time.
0 commit comments