Skip to content

Commit

Permalink
all: point references at new repository
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinburke committed Apr 29, 2020
1 parent fc6f9ac commit ff3e066
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
LAST_TAG := $(shell git describe --abbrev=0 --tags)

USER := aktau
USER := github-release
EXECUTABLE := github-release

# only include the amd64 binaries, otherwise the github release will become
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ How to install
If you don't have the Go toolset installed, and you don't want to, but
still want to use the app, you can download binaries for your platform
on the [releases
page](https://github.com/aktau/github-release/releases/latest). Yes, that's
page](https://github.com/github-release/github-release/releases/latest). Yes, that's
dogfooding, check the makefile!

If you have Go installed, you can just do:

```sh
go get github.com/aktau/github-release
go get github.com/github-release/github-release
```

This will automatically download, compile and install the app.
Expand Down
2 changes: 1 addition & 1 deletion assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http"
"time"

"github.com/aktau/github-release/github"
"github.com/github-release/github-release/github"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"os"
"strconv"

"github.com/aktau/github-release/github"
"github.com/github-release/github-release/github"
)

func infocmd(opt Options) error {
Expand Down
2 changes: 1 addition & 1 deletion github-release.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/aktau/github-release/github"
"github.com/github-release/github-release/github"
"github.com/voxelbrain/goptions"
)

Expand Down
2 changes: 1 addition & 1 deletion releases.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"time"

"github.com/aktau/github-release/github"
"github.com/github-release/github-release/github"
"github.com/dustin/go-humanize"
)

Expand Down
2 changes: 1 addition & 1 deletion tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/aktau/github-release/github"
"github.com/github-release/github-release/github"
)

const (
Expand Down

0 comments on commit ff3e066

Please sign in to comment.