We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c055eae + 4337a21 commit f3eaa11Copy full SHA for f3eaa11
scripts/release.sh
@@ -17,8 +17,15 @@ DIST="dist"
17
mkdir -p "${ARCHIVES}/${DIST}"
18
19
# cross compile
20
+XC_OS=${XC_OS:-linux windows}
21
XC_ARCH=${XC_ARCH:-386 amd64}
-XC_OS=${XC_OS:-darwin linux windows}
22
+gox -output="${ARCHIVES}/{{.OS}}_{{.Arch}}/{{.Dir}}" \
23
+ -os="${XC_OS}" \
24
+ -arch="${XC_ARCH}" \
25
+ ./cmd/radigo
26
+# for darwin
27
+XC_OS=${XC_OS:-darwin}
28
+XC_ARCH=${XC_ARCH:-amd64 arm64}
29
gox -output="${ARCHIVES}/{{.OS}}_{{.Arch}}/{{.Dir}}" \
30
-os="${XC_OS}" \
31
-arch="${XC_ARCH}" \
0 commit comments