Skip to content

Commit

Permalink
another attempt at making this work on github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Nov 25, 2023
1 parent a1aa4ff commit 2add9f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@ jobs:
- make-release
strategy:
matrix:
goos: [linux, freebsd, darwin, windows]
goarch: [amd64, arm64]
goos: [linux]
goarch: [amd64]
exclude:
- goarch: arm64
goos: windows
steps:
- run: sudo apt install clang libsqlite3-dev liblmdb-dev
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.40
with:
Expand All @@ -40,3 +41,4 @@ jobs:
md5sum: false
sha256sum: false
compress_assets: false
build_command: make
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
all:
CC=(which clang) go build
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module github.com/fiatjaf/jinglebells

go 1.21.4
go 1.21.0

toolchain go1.21.4

require (
github.com/fiatjaf/eventstore v0.2.11
Expand Down

0 comments on commit 2add9f6

Please sign in to comment.