Skip to content

Commit ff3e066

Browse files
committed
all: point references at new repository
1 parent fc6f9ac commit ff3e066

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
LAST_TAG := $(shell git describe --abbrev=0 --tags)
22

3-
USER := aktau
3+
USER := github-release
44
EXECUTABLE := github-release
55

66
# only include the amd64 binaries, otherwise the github release will become

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ How to install
2626
If you don't have the Go toolset installed, and you don't want to, but
2727
still want to use the app, you can download binaries for your platform
2828
on the [releases
29-
page](https://github.com/aktau/github-release/releases/latest). Yes, that's
29+
page](https://github.com/github-release/github-release/releases/latest). Yes, that's
3030
dogfooding, check the makefile!
3131

3232
If you have Go installed, you can just do:
3333

3434
```sh
35-
go get github.com/aktau/github-release
35+
go get github.com/github-release/github-release
3636
```
3737

3838
This will automatically download, compile and install the app.

assets.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"time"
77

8-
"github.com/aktau/github-release/github"
8+
"github.com/github-release/github-release/github"
99
)
1010

1111
const (

cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"os"
1212
"strconv"
1313

14-
"github.com/aktau/github-release/github"
14+
"github.com/github-release/github-release/github"
1515
)
1616

1717
func infocmd(opt Options) error {

github-release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"os"
66

7-
"github.com/aktau/github-release/github"
7+
"github.com/github-release/github-release/github"
88
"github.com/voxelbrain/goptions"
99
)
1010

releases.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"time"
77

8-
"github.com/aktau/github-release/github"
8+
"github.com/github-release/github-release/github"
99
"github.com/dustin/go-humanize"
1010
)
1111

tags.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/aktau/github-release/github"
6+
"github.com/github-release/github-release/github"
77
)
88

99
const (

0 commit comments

Comments
 (0)