Fixed gh workflow hopefully?

This commit is contained in:
2025-08-03 11:43:21 +03:00
parent c3a3d28afb
commit c8eff53c84

View File

@@ -42,8 +42,9 @@ jobs:
- name: Build binary
run: |
GOOS=${{ matrix.target%%/* }}
GOARCH=${{ matrix.target##*/ }}
TARGET="${{ matrix.target }}"
GOOS=$(echo "$TARGET" | cut -d'/' -f1)
GOARCH=$(echo "$TARGET" | cut -d'/' -f2)
BIN=eko
EXT=""
if [ "$GOOS" = "windows" ]; then EXT=".exe"; fi