From b45347aa1aa2209eb63f542678a07e985b2295f5 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Thu, 5 Dec 2024 11:03:04 -0600 Subject: [PATCH] Wrong architecture binary ended up in arm64 --- .github/workflows/packager_deb.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/packager_deb.yml b/.github/workflows/packager_deb.yml index 5a0d3177e2..ff76627e55 100644 --- a/.github/workflows/packager_deb.yml +++ b/.github/workflows/packager_deb.yml @@ -82,6 +82,9 @@ jobs: - name: Building bor for arm64 run: GOARCH=arm64 GOOS=linux CC=aarch64-linux-gnu-gcc CXX=aarch64-linux-gnu-g++ CGO_ENABLED=1 go build -o build/bin/bor ./cmd/cli/main.go + - name: Copying necessary binary file + run: cp -rp build/bin/bor packaging/deb/bor/usr/bin/ + # Control file for arm64 creation - name: create control file run: |