diff --git a/.goreleaser.yml b/.goreleaser.yml index ad725cb19..4f6ff3204 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -36,8 +36,8 @@ builds: - id: navidrome_linux_arm env: - CGO_ENABLED=1 - - CC=arm-linux-gnueabihf-gcc - - CXX=arm-linux-gnueabihf-g++ + - CC=arm-linux-gnueabi-gcc + - CXX=arm-linux-gnueabi-g++ goos: - linux goarch: diff --git a/Makefile b/Makefile index 474d16538..799f9fcf7 100644 --- a/Makefile +++ b/Makefile @@ -103,5 +103,5 @@ release: .PHONY: release snapshot: - docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-3 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.14.9-4 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot