diff --git a/.cross_compile.sh b/.cross_compile.sh index 52148e7..d7857ca 100644 --- a/.cross_compile.sh +++ b/.cross_compile.sh @@ -17,6 +17,7 @@ mkdir ${TARGET_DIR} for pl in ${PLATFORMS}; do export GOOS=$(echo ${pl} | cut -d'/' -f1) export GOARCH=$(echo ${pl} | cut -d'/' -f2) + export GOARM=$(echo ${pl} | cut -d'v' -f2) export TARGET=${TARGET_DIR}/${DIST_PREFIX}_${GOOS}_${GOARCH} if [ "${GOOS}" == "windows" ]; then export TARGET=${TARGET_DIR}/${DIST_PREFIX}_${GOOS}_${GOARCH}.exe diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 26a9fab..217b247 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,6 +38,9 @@ jobs: dist/nexttrace_darwin_arm64 dist/nexttrace_linux_amd64 dist/nexttrace_linux_arm64 + dist/nexttrace_linux_arm_v7 dist/nexttrace_linux_mips + dist/nexttrace_openbsd_amd64 + dist/nexttrace_freebsd_amd64 env: GITHUB_TOKEN: ${{ secrets.GT_Token }}