From 5fe7457664acab2fe4020378a9682bf86f01bc54 Mon Sep 17 00:00:00 2001 From: Aaron Dewes Date: Tue, 8 Aug 2023 18:25:05 +0200 Subject: [PATCH] Add RISC-V to goreleaser config This will add RISC-V prebuilts for Caddy. --- .goreleaser.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index f7d03e26d15..53fdea0bf7f 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -43,6 +43,7 @@ builds: - arm64 - s390x - ppc64le + - riscv64 goarm: - "5" - "6" @@ -54,14 +55,20 @@ builds: goarch: ppc64le - goos: darwin goarch: s390x + - goos: darwin + goarch: riscv64 - goos: windows goarch: ppc64le - goos: windows goarch: s390x + - goos: windows + goarch: riscv64 - goos: freebsd goarch: ppc64le - goos: freebsd goarch: s390x + - goos: freebsd + goarch: riscv64 - goos: freebsd goarch: arm goarm: "5"