File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ builds:
20
20
21
21
release :
22
22
github :
23
- owner : stealthrocket
23
+ owner : dispatchrun
24
24
name : dispatch
25
25
draft : false
26
26
prerelease : auto
@@ -30,7 +30,7 @@ changelog:
30
30
31
31
brews :
32
32
- name : dispatch
33
- url_template : " https://github.com/stealthrocket /dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
33
+ url_template : " https://github.com/dispatchrun /dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
34
34
35
35
commit_author :
36
36
name : stealthrocket-bot
50
50
system "#{bin}/dispatch --version"
51
51
52
52
repository :
53
- owner : stealthrocket
53
+ owner : dispatchrun
54
54
name : homebrew-dispatch
55
55
branch : main
56
56
token : " {{ .Env.GH_TOKEN_HOMEBREW_DISPATCH }}"
Original file line number Diff line number Diff line change 9
9
Install with Homebrew on macOS:
10
10
11
11
``` console
12
- brew tap stealthrocket /dispatch
12
+ brew tap dispatchrun /dispatch
13
13
brew install dispatch
14
14
```
15
15
16
16
Install with Go:
17
17
18
18
``` console
19
- go install github.com/stealthrocket /dispatch@latest
19
+ go install github.com/dispatchrun /dispatch@latest
20
20
```
21
21
22
22
Alternatively, you can download the latest ` dispatch ` binary from the
23
- [ Releases] ( https://github.com/stealthrocket /dispatch/releases ) page.
23
+ [ Releases] ( https://github.com/dispatchrun /dispatch/releases ) page.
24
24
25
25
### Create an Account
26
26
Original file line number Diff line number Diff line change 1
- module github.com/stealthrocket /dispatch
1
+ module github.com/dispatchrun /dispatch
2
2
3
3
go 1.22.0
4
4
@@ -8,6 +8,7 @@ require (
8
8
github.com/charmbracelet/bubbletea v0.25.0
9
9
github.com/charmbracelet/lipgloss v0.9.1
10
10
github.com/google/uuid v1.6.0
11
+ github.com/muesli/reflow v0.3.0
11
12
github.com/pelletier/go-toml/v2 v2.2.0
12
13
github.com/spf13/cobra v1.8.0
13
14
golang.org/x/term v0.19.0
@@ -25,7 +26,6 @@ require (
25
26
github.com/mattn/go-runewidth v0.0.15 // indirect
26
27
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
27
28
github.com/muesli/cancelreader v0.2.2 // indirect
28
- github.com/muesli/reflow v0.3.0 // indirect
29
29
github.com/muesli/termenv v0.15.2 // indirect
30
30
github.com/rivo/uniseg v0.4.6 // indirect
31
31
github.com/spf13/pflag v1.0.5 // indirect
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package main
3
3
import (
4
4
"os"
5
5
6
- "github.com/stealthrocket /dispatch/cli"
6
+ "github.com/dispatchrun /dispatch/cli"
7
7
)
8
8
9
9
func main () {
You can’t perform that action at this time.
0 commit comments