Skip to content

Commit de643fa

Browse files
Updated go-release-action to latest. Updated README.md to the redis-performance org (#10)
1 parent 0f7b002 commit de643fa

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

.github/workflows/publish.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ jobs:
1010
name: Release Go Binary
1111
runs-on: ubuntu-latest
1212
strategy:
13+
fail-fast: false
1314
matrix:
1415
goos: [linux, darwin]
1516
goarch: [amd64, arm64]
1617
steps:
1718
- uses: actions/checkout@v3
18-
- uses: wangyoucao577/go-release-action@v1.28
19+
- uses: wangyoucao577/go-release-action@v1
1920
with:
2021
github_token: ${{ secrets.GITHUB_TOKEN }}
2122
goos: ${{ matrix.goos }}
@@ -24,3 +25,5 @@ jobs:
2425
sha256sum: true
2526
asset_name: pubsub-sub-bench-${{ matrix.goos }}-${{ matrix.goarch }}
2627
build_command: "make build"
28+
retry: 5
29+
overwrite: true

README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
[![license](https://img.shields.io/github/license/filipecosta90/pubsub-sub-bench.svg)](https://github.com/filipecosta90/pubsub-sub-bench)
3-
[![GitHub issues](https://img.shields.io/github/release/filipecosta90/pubsub-sub-bench.svg)](https://github.com/filipecosta90/pubsub-sub-bench/releases/latest)
4-
[![codecov](https://codecov.io/github/filipecosta90/pubsub-sub-bench/branch/main/graph/badge.svg?token=B6ISQSDK3Y)](https://codecov.io/github/filipecosta90/pubsub-sub-bench)
2+
[![license](https://img.shields.io/github/license/redis-performance/pubsub-sub-bench.svg)](https://github.com/redis-performance/pubsub-sub-bench)
3+
[![GitHub issues](https://img.shields.io/github/release/redis-performance/pubsub-sub-bench.svg)](https://github.com/redis-performance/pubsub-sub-bench/releases/latest)
4+
[![codecov](https://codecov.io/github/redis-performance/pubsub-sub-bench/branch/main/graph/badge.svg?token=B6ISQSDK3Y)](https://codecov.io/github/redis-performance/pubsub-sub-bench)
55

66

77
## Overview
@@ -21,19 +21,19 @@ Several aspects can dictate the overall system performance, like the:
2121

2222
If you don't have go on your machine and just want to use the produced binaries you can download the following prebuilt bins:
2323

24-
https://github.com/filipecosta90/pubsub-sub-bench/releases/latest
24+
https://github.com/redis-performance/pubsub-sub-bench/releases/latest
2525

2626
| OS | Arch | Link |
2727
| :--- | :---: | ---: |
28-
| Linux | amd64 (64-bit X86) | [pubsub-sub-bench-linux-amd64](https://github.com/filipecosta90/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-linux-amd64.tar.gz) |
29-
| Linux | arm64 (64-bit ARM) | [pubsub-sub-bench-linux-arm64](https://github.com/filipecosta90/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-linux-arm64.tar.gz) |
30-
| Darwin | amd64 (64-bit X86) | [pubsub-sub-bench-darwin-amd64](https://github.com/filipecosta90/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-darwin-amd64.tar.gz) |
31-
| Darwin | arm64 (64-bit ARM) | [pubsub-sub-bench-darwin-arm64](https://github.com/filipecosta90/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-darwin-arm64.tar.gz) |
28+
| Linux | amd64 (64-bit X86) | [pubsub-sub-bench-linux-amd64](https://github.com/redis-performance/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-linux-amd64.tar.gz) |
29+
| Linux | arm64 (64-bit ARM) | [pubsub-sub-bench-linux-arm64](https://github.com/redis-performance/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-linux-arm64.tar.gz) |
30+
| Darwin | amd64 (64-bit X86) | [pubsub-sub-bench-darwin-amd64](https://github.com/redis-performance/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-darwin-amd64.tar.gz) |
31+
| Darwin | arm64 (64-bit ARM) | [pubsub-sub-bench-darwin-arm64](https://github.com/redis-performance/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-darwin-arm64.tar.gz) |
3232

3333
Here's how bash script to download and try it:
3434

3535
```bash
36-
wget -c https://github.com/filipecosta90/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-$(uname -mrs | awk '{ print tolower($1) }')-$(dpkg --print-architecture).tar.gz -O - | tar -xz
36+
wget -c https://github.com/redis-performance/pubsub-sub-bench/releases/latest/download/pubsub-sub-bench-$(uname -mrs | awk '{ print tolower($1) }')-$(dpkg --print-architecture).tar.gz -O - | tar -xz
3737

3838
# give it a try
3939
./pubsub-sub-bench --help
@@ -47,8 +47,8 @@ To install the benchmark utility with a Go Env do as follow:
4747
`go get` and then `go install`:
4848
```bash
4949
# Fetch this repo
50-
go get github.com/filipecosta90/pubsub-sub-bench
51-
cd $GOPATH/src/github.com/filipecosta90/pubsub-sub-bench
50+
go get github.com/redis-performance/pubsub-sub-bench
51+
cd $GOPATH/src/github.com/redis-performance/pubsub-sub-bench
5252
make
5353
```
5454

0 commit comments

Comments
 (0)