Skip to content

Commit

Permalink
Merge pull request #39 from dispatchrun/rename-org
Browse files Browse the repository at this point in the history
Rename GitHub organization
  • Loading branch information
chriso authored May 3, 2024
2 parents f1e8d5c + 42cfe80 commit 00ba3bc
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ builds:

release:
github:
owner: stealthrocket
owner: dispatchrun
name: dispatch
draft: false
prerelease: auto
Expand All @@ -30,7 +30,7 @@ changelog:

brews:
- name: dispatch
url_template: "https://github.com/stealthrocket/dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
url_template: "https://github.com/dispatchrun/dispatch/releases/download/{{ .Tag }}/{{ .ArtifactName }}"

commit_author:
name: stealthrocket-bot
Expand All @@ -50,7 +50,7 @@ brews:
system "#{bin}/dispatch --version"
repository:
owner: stealthrocket
owner: dispatchrun
name: homebrew-dispatch
branch: main
token: "{{ .Env.GH_TOKEN_HOMEBREW_DISPATCH }}"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@
Install with Homebrew on macOS:

```console
brew tap stealthrocket/dispatch
brew tap dispatchrun/dispatch
brew install dispatch
```

Install with Go:

```console
go install github.com/stealthrocket/dispatch@latest
go install github.com/dispatchrun/dispatch@latest
```

Alternatively, you can download the latest `dispatch` binary from the
[Releases](https://github.com/stealthrocket/dispatch/releases) page.
[Releases](https://github.com/dispatchrun/dispatch/releases) page.

### Create an Account

Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/stealthrocket/dispatch
module github.com/dispatchrun/dispatch

go 1.22.0

Expand All @@ -8,6 +8,7 @@ require (
github.com/charmbracelet/bubbletea v0.25.0
github.com/charmbracelet/lipgloss v0.9.1
github.com/google/uuid v1.6.0
github.com/muesli/reflow v0.3.0
github.com/pelletier/go-toml/v2 v2.2.0
github.com/spf13/cobra v1.8.0
golang.org/x/term v0.19.0
Expand All @@ -25,7 +26,6 @@ require (
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/muesli/ansi v0.0.0-20211018074035-2e021307bc4b // indirect
github.com/muesli/cancelreader v0.2.2 // indirect
github.com/muesli/reflow v0.3.0 // indirect
github.com/muesli/termenv v0.15.2 // indirect
github.com/rivo/uniseg v0.4.6 // indirect
github.com/spf13/pflag v1.0.5 // indirect
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/stealthrocket/dispatch/cli"
"github.com/dispatchrun/dispatch/cli"
)

func main() {
Expand Down

0 comments on commit 00ba3bc

Please sign in to comment.