magicbell-cli 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.goreleaser.yaml +7 -8
- package/README.md +4 -1
- package/package.json +1 -1
- package/bin/README.md +0 -1
package/.goreleaser.yaml
CHANGED
|
@@ -5,6 +5,7 @@ version: 2
|
|
|
5
5
|
# To create a new release, take the following steps
|
|
6
6
|
# - have `goreleaser` installed (brew install goreleaser)
|
|
7
7
|
# - have a clean git state
|
|
8
|
+
# - have GITHUB_TOKEN and NPM_TOKEN set
|
|
8
9
|
# - run: git tag v1.x.x (semver)
|
|
9
10
|
# - run: goreleaser release
|
|
10
11
|
project_name: magicbell-cli
|
|
@@ -22,6 +23,10 @@ builds:
|
|
|
22
23
|
- linux
|
|
23
24
|
- windows
|
|
24
25
|
- darwin
|
|
26
|
+
goarch:
|
|
27
|
+
- amd64
|
|
28
|
+
- arm64
|
|
29
|
+
- 386
|
|
25
30
|
|
|
26
31
|
dist: dist
|
|
27
32
|
archives:
|
|
@@ -29,18 +34,12 @@ archives:
|
|
|
29
34
|
# this name template makes the OS and Arch compatible with the results of `uname`.
|
|
30
35
|
name_template: >-
|
|
31
36
|
{{ .ProjectName }}_
|
|
32
|
-
{{-
|
|
33
|
-
{{-
|
|
34
|
-
{{- else if eq .Arch "386" }}i386
|
|
35
|
-
{{- else }}{{ .Arch }}{{ end }}
|
|
36
|
-
{{- if .Arm }}v{{ .Arm }}{{ end }}
|
|
37
|
+
{{- .Os }}_
|
|
38
|
+
{{- .Arch }}
|
|
37
39
|
# use zip for windows archives
|
|
38
40
|
format_overrides:
|
|
39
41
|
- goos: windows
|
|
40
42
|
formats: [zip]
|
|
41
|
-
# files:
|
|
42
|
-
# - src: ./app/cmds/cli/README.md
|
|
43
|
-
# dst: README.md
|
|
44
43
|
|
|
45
44
|
brews:
|
|
46
45
|
- repository:
|
package/README.md
CHANGED
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Install
|
|
4
4
|
|
|
5
|
+
Insstall using npm or brew
|
|
6
|
+
|
|
5
7
|
```shell
|
|
8
|
+
npm install -g magicbell-cli
|
|
6
9
|
brew install magicbell/tap/magicbell-cli
|
|
7
10
|
```
|
|
8
11
|
|
|
9
|
-
## Reinstall
|
|
12
|
+
## Reinstall using Brew
|
|
10
13
|
|
|
11
14
|
If you've installed our CLI from the magicbell-io org, please uninstall it first:
|
|
12
15
|
|
package/package.json
CHANGED
package/bin/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# MagicBell CLI
|