Skip to content

Commit

Permalink
multiple repositories
Browse files Browse the repository at this point in the history
Demo combining multiple repositories for a release
  • Loading branch information
Kobby-Bawuah authored Sep 19, 2023
1 parent 7e92306 commit abca4c1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/docs/product/cli/releases.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,13 @@ sentry-cli releases set-commits "$VERSION" --auto

In case you are deploying without access to the git repository, you can manually specify the commits instead. To do this, pass the `--commit` parameter to the `set-commits` command in the format `REPO_NAME@REVISION`. You can repeat this for as many repositories as you have:

```bash

```bash {tabTitle:bash (one repo)}
sentry-cli releases set-commits "$VERSION" --commit "my-repo@deadbeef"
```
```bash {tabTitle:bash (many repos)}
sentry-cli releases set-commits "$VERSION" --commit "my-repo@deadbeef" --commit "my-repo@deadbeef2" --commit "my-repo@deadbeef3"
```

<Note>
The repository name `my-repo` should match the name you entered when linking
Expand Down

0 comments on commit abca4c1

Please sign in to comment.