@@ -60,17 +60,17 @@ jobs:
6060 run : |
6161 # Create output directory
6262 mkdir -p dist
63-
63+
6464 # Define binary name
6565 if [ "${{ matrix.goos }}" = "windows" ]; then
6666 BINARY_NAME="coderun-${{ matrix.os }}-${{ matrix.arch }}.exe"
6767 else
6868 BINARY_NAME="coderun-${{ matrix.os }}-${{ matrix.arch }}"
6969 fi
70-
70+
7171 # Compile
72- go build -ldflags="-s -w -X 'main.version=${{ env.VERSION }}'" -o "dist/${BINARY_NAME}" .
73-
72+ go build -ldflags="-s -w -X 'main.version=${{ env.VERSION }}' -X 'github.com/helmcode/coderun-cli/internal/utils.DefaultAPIURL=https://coderun-api.helmcode.com' " -o "dist/${BINARY_NAME}" .
73+
7474 # Verify file was created
7575 ls -la dist/
7676
@@ -99,10 +99,10 @@ jobs:
9999 run : |
100100 # Create final directory
101101 mkdir -p release
102-
102+
103103 # Move all binaries to release directory
104104 find dist/ -name "coderun-*" -type f -exec cp {} release/ \;
105-
105+
106106 # List files for verification
107107 ls -la release/
108108
@@ -119,51 +119,51 @@ jobs:
119119 name : Release ${{ env.VERSION }}
120120 body : |
121121 ## 🎉 CodeRun CLI ${{ env.VERSION }}
122-
122+
123123 ### 📦 Installation
124-
124+
125125 #### Linux (AMD64)
126126 ```bash
127127 curl -L https://github.com/${{ github.repository }}/releases/download/${{ env.VERSION }}/coderun-linux-amd64 -o coderun
128128 chmod +x coderun
129129 sudo mv coderun /usr/local/bin/
130130 ```
131-
131+
132132 #### Linux (ARM64)
133133 ```bash
134134 curl -L https://github.com/${{ github.repository }}/releases/download/${{ env.VERSION }}/coderun-linux-arm64 -o coderun
135135 chmod +x coderun
136136 sudo mv coderun /usr/local/bin/
137137 ```
138-
138+
139139 #### macOS (Intel)
140140 ```bash
141141 curl -L https://github.com/${{ github.repository }}/releases/download/${{ env.VERSION }}/coderun-darwin-amd64 -o coderun
142142 chmod +x coderun
143143 sudo mv coderun /usr/local/bin/
144144 ```
145-
145+
146146 #### macOS (Apple Silicon)
147147 ```bash
148148 curl -L https://github.com/${{ github.repository }}/releases/download/${{ env.VERSION }}/coderun-darwin-arm64 -o coderun
149149 chmod +x coderun
150150 sudo mv coderun /usr/local/bin/
151151 ```
152-
152+
153153 #### Windows (AMD64)
154154 Download `coderun-windows-amd64.exe` and rename it to `coderun.exe`
155-
155+
156156 #### Windows (ARM64)
157157 Download `coderun-windows-arm64.exe` and rename it to `coderun.exe`
158-
158+
159159 ### ✅ Installation Verification
160160 ```bash
161161 coderun --version
162162 ```
163-
163+
164164 ### 🔒 Integrity Verification
165165 You can verify file integrity using `checksums.txt`
166-
166+
167167 files : |
168168 release/*
169169 draft : false
0 commit comments