We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a9a9d5 commit be89b48Copy full SHA for be89b48
.goreleaser.yaml
@@ -17,11 +17,16 @@ builds:
17
- amd64
18
- arm
19
- arm64
20
+ - loong64
21
goarm:
22
- "7"
23
ignore:
24
- goos: windows
25
goarch: arm
26
+ - goos: windows
27
+ goarch: loong64
28
+ - goos: darwin
29
30
mod_timestamp: "{{ .CommitTimestamp }}"
31
flags:
32
- -trimpath
install.sh
@@ -31,6 +31,8 @@ ARCH_TYPE=$(uname -m)
if [ "$ARCH_TYPE" = "arm64" ]; then
33
ARCH_TYPE="aarch64"
34
+elif [ "$ARCH_TYPE" = "loongarch64" ]; then
35
+ ARCH_TYPE="loong64"
36
fi
37
38
FILENAME="vfox_${VERSION}_${OS_TYPE}_${ARCH_TYPE}"
0 commit comments