Skip to content

Commit 52c77b3

Browse files
authored
docs: proper go contributing docs instead of js (#12)
1 parent 5749e84 commit 52c77b3

File tree

1 file changed

+21
-5
lines changed

1 file changed

+21
-5
lines changed

CONTRIBUTING.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,30 @@
1-
# Contributing to OpenLLMetry-JS
1+
# Contributing to `go-openllmetry`
22

33
Thanks for taking the time to contribute! 😃 🚀
44

55
Please refer to our [Contributing Guide](https://traceloop.com/docs/openllmetry/contributing/overview) for instructions on how to contribute.
66

7-
## Releasing
7+
### Prerequisites
88

9-
To release a new version of the package, run (make sure you have access to the `@traceloop` npm organization):
9+
- `go` version `v1.21.0+`
10+
11+
## Development
12+
13+
Clone the repository:
14+
15+
```bash
16+
git clone https://github.com/traceloop/go-openllmetry
17+
cd go-openllmetry
18+
```
19+
20+
## Release
21+
22+
```bash
23+
git tag -a <module>/v<sem version> -m "release: <module>@v<sem version>"
24+
```
25+
26+
For example:
1027

1128
```bash
12-
nx run-many --targets=build
13-
npx lerna publish --no-private
29+
git tag -a traceloop-sdk/v0.0.4 -m "release: [email protected]"
1430
```

0 commit comments

Comments
 (0)