diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a93b557..6e63cab 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,8 +24,8 @@ jobs: - make-release strategy: matrix: - goos: [linux, freebsd, darwin, windows] - goarch: [amd64, arm64] + goos: [linux] + goarch: [amd64] exclude: - goarch: arm64 goos: windows @@ -40,3 +40,4 @@ jobs: md5sum: false sha256sum: false compress_assets: false + build_command: make diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0e6bb76 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +all: + CC=clang go build diff --git a/go.mod b/go.mod index 7f64b9c..ceb5ea1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/fiatjaf/jinglebells -go 1.21.4 +go 1.21 require ( github.com/fiatjaf/eventstore v0.2.11