Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

generate binaries for bsd distros #130

Merged
merged 1 commit into from
Mar 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ builds:
env:
- CGO_ENABLED=0
goos:
- freebsd
- netbsd
- openbsd
- linux
- darwin
goarch:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ endif
.PHONY: build
build:
ifneq (${HAS_GORELEASER},)
goreleaser build --clean --skip-validate
goreleaser build --rm-dist --skip-validate
else
$(error goreleaser binary is missing, please install goreleaser)
endif
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If the version number is not provided then the most recent version of the plugin
steps:
- label: "Triggering pipelines"
plugins:
- monebag/monorepo-diff#v2.5.7:
- monebag/monorepo-diff#v2.5.8:
diff: "git diff --name-only HEAD~1"
watch:
- path: "bar-service/"
Expand All @@ -35,7 +35,7 @@ steps:
steps:
- label: "Triggering pipelines"
plugins:
- monebag/monorepo-diff#v2.5.7:
- monebag/monorepo-diff#v2.5.8:
diff: "git diff --name-only $(head -n 1 last_successful_build)"
interpolation: false
env:
Expand Down Expand Up @@ -151,7 +151,7 @@ Add `log_level` property to set the log level. Supported log levels are `debug`
steps:
- label: "Triggering pipelines"
plugins:
- monebag/monorepo-diff#v2.5.7:
- monebag/monorepo-diff#v2.5.8:
diff: "git diff --name-only HEAD~1"
log_level: "debug" # defaults to "info"
watch:
Expand Down Expand Up @@ -227,7 +227,7 @@ hooks:
steps:
- label: "Triggering pipelines"
plugins:
- monebag/monorepo-diff#v2.5.7:
- monebag/monorepo-diff#v2.5.8:
diff: "git diff --name-only HEAD~1"
watch:
- path: app/cms/
Expand Down