Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
26 changes: 21 additions & 5 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,38 @@ builds:
goarm:
- 7
checksum:
name_template: 'checksums.txt'
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- "^docs:"
- "^test:"
brews:
# DEPRECATED: prefer using dagu-dev/dagu for brew formula
- repository:
owner: yohamta
name: homebrew-tap
folder: Formula
homepage: 'https://github.com/dagu-dev/dagu'
description: 'A No-code workflow executor that runs DAGs defined in a simple YAML format'
homepage: "https://github.com/dagu-dev/dagu"
description: "A No-code workflow executor that runs DAGs defined in a simple YAML format"
license: "GNU General Public License v3.0"
custom_block: |
service do
run [opt_bin/"dagu", "start-all"]
keep_alive true
error_log_path var/"log/dagu.log"
log_path var/"log/dagu.log"
working_dir var
end
- repository:
owner: dagu-dev
name: homebrew-dagu
folder: Formula
homepage: "https://github.com/dagu-dev/dagu"
description: "A No-code workflow executor that runs DAGs defined in a simple YAML format"
license: "GNU General Public License v3.0"
custom_block: |
service do
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ Download the latest binary from the [Releases page](https://github.com/dagu-dev/

### Via Homebrew (macOS)
```sh
brew install yohamta/tap/dagu
brew install dagu-dev/dagu/dagu
```

Upgrade to the latest version:
```sh
brew upgrade yohamta/tap/dagu
brew upgrade dagu-dev/dagu/dagu
```

### Via Docker
Expand Down