forked from getsentry/sentry-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.craft.yml
More file actions
27 lines (25 loc) · 772 Bytes
/
.craft.yml
File metadata and controls
27 lines (25 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
github:
owner: getsentry
repo: sentry-cli
changelogPolicy: simple
targets:
- name: npm
- name: brew
tap: getsentry/tools
template: >
class SentryCli < Formula
desc "This is a Sentry command-line client for some generic tasks."
homepage "https://github.com/getsentry/sentry-cli"
url "https://github.com/getsentry/sentry-cli/releases/download/${ref}/sentry-cli-Darwin-x86_64"
version "${ref}"
sha256 "${checksums['sentry-cli-Darwin-x86_64']}"
def install
mv "sentry-cli-Darwin-x86_64", "sentry-cli"
bin.install "sentry-cli"
end
test do
assert_match version.to_s, shell_output("#{bin}/sentry-cli --version").chomp
end
end
- name: github