Skip to content

Commit e07c724

Browse files
committed
docs: Change repo URL to gabe565/moreutils-go
1 parent 9ef24a9 commit e07c724

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
with:
7171
app-id: ${{ secrets.BOT_APP_ID }}
7272
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
73-
repositories: moreutils,homebrew-tap
73+
repositories: moreutils-go,homebrew-tap
7474
- name: Run GoReleaser
7575
uses: goreleaser/goreleaser-action@v6
7676
with:
@@ -83,7 +83,7 @@ jobs:
8383
- name: Push beta image
8484
if: github.ref_name == 'main'
8585
run: |
86-
export REPO="$(tr '[[:upper:]]' '[[:lower:]]' <<< "ghcr.io/$GITHUB_REPOSITORY")"
86+
export REPO="$(tr '[[:upper:]]' '[[:lower:]]' <<< "ghcr.io/gabe565/moreutils")"
8787
IMAGES=()
8888
while read -r SOURCE DEST; do
8989
docker tag "$SOURCE" "$DEST"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# moreutils-go
2-
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/gabe565/moreutils)](https://github.com/gabe565/moreutils/releases)
3-
[![Build](https://github.com/gabe565/moreutils/actions/workflows/build.yaml/badge.svg)](https://github.com/gabe565/moreutils/actions/workflows/build.yaml)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/gabe565/moreutils)](https://goreportcard.com/report/github.com/gabe565/moreutils)
2+
[![GitHub release (latest by date)](https://img.shields.io/github/v/release/gabe565/moreutils-go)](https://github.com/gabe565/moreutils-go/releases)
3+
[![Build](https://github.com/gabe565/moreutils-go/actions/workflows/build.yaml/badge.svg)](https://github.com/gabe565/moreutils-go/actions/workflows/build.yaml)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/gabe565/moreutils-go)](https://goreportcard.com/report/github.com/gabe565/moreutils-go)
55

66
A Go rewrite of [moreutils](http://kitenet.net/~joey/code/moreutils/): A collection of the Unix tools that nobody thought to write long ago when Unix was young.
77

@@ -114,7 +114,7 @@ jobs:
114114
runs-on: ubuntu-latest
115115
steps:
116116
- uses: actions/checkout@v2
117-
- uses: gabe565/moreutils@v0
117+
- uses: gabe565/moreutils-go@v0
118118
- run: echo hello world | ts
119119
```
120120
@@ -150,7 +150,7 @@ CMD echo hello world | ts
150150
<details>
151151
<summary>Click to expand</summary>
152152

153-
1. Download and run the [latest release binary](https://github.com/gabe565/moreutils/releases/latest) for your system and architecture.
153+
1. Download and run the [latest release binary](https://github.com/gabe565/moreutils-go/releases/latest) for your system and architecture.
154154
2. Extract the binary and place it in the desired directory.
155155
3. Run `moreutils install -sr DIRECTORY` to generate symlinks for each command.
156156
</details>

goreleaser.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ RUN ./moreutils install .
55

66
FROM alpine
77
WORKDIR /data
8-
LABEL org.opencontainers.image.source="https://github.com/gabe565/moreutils"
8+
LABEL org.opencontainers.image.source="https://github.com/gabe565/moreutils-go"
99
COPY --from=source /app /usr/bin
1010
ENTRYPOINT ["moreutils"]

0 commit comments

Comments
 (0)