Skip to content
This repository was archived by the owner on Jan 17, 2024. It is now read-only.

Commit 9e34a23

Browse files
committed
Rename module to the grafana organization
fixes #22
1 parent dad381e commit 9e34a23

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,11 @@ jobs:
1717
with:
1818
go-version: 1.17
1919

20-
- name: Download xk6
21-
run: wget https://github.com/k6io/xk6/releases/download/v0.4.1/xk6_0.4.1_linux_amd64.tar.gz
22-
23-
- name: Untargz xk6
24-
run: tar -zxf xk6_0.4.1_linux_amd64.tar.gz
20+
- name: Install xk6
21+
run: go install go.k6.io/xk6/cmd/xk6@latest
2522

2623
- name: Build the binary
27-
run: ./xk6 build --with github.com/k6io/xk6-distributed-tracing@latest
24+
run: ./xk6 build --with github.com/grafana/xk6-distributed-tracing@latest
2825

2926
- name: Upload binaries to release
3027
uses: svenstaro/upload-release-action@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $ go install go.k6.io/xk6/cmd/xk6@latest
4545
2. Build the binary:
4646

4747
```bash
48-
$ xk6 build --with github.com/k6io/xk6-distributed-tracing@latest
48+
$ xk6 build --with github.com/grafana/xk6-distributed-tracing@latest
4949
```
5050

5151
## Example

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/k6io/xk6-distributed-tracing
1+
module github.com/grafana/xk6-distributed-tracing
22

33
go 1.17
44

tracing.go

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

66
"github.com/dop251/goja"
7-
"github.com/k6io/xk6-distributed-tracing/client"
7+
"github.com/grafana/xk6-distributed-tracing/client"
88
"github.com/sirupsen/logrus"
99
"go.k6.io/k6/js/modules"
1010
k6HTTP "go.k6.io/k6/js/modules/k6/http"

0 commit comments

Comments
 (0)