Skip to content

Commit

Permalink
docs: add release steps to readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
vplasencia committed Apr 22, 2024
1 parent 6ce04b5 commit f1bfce4
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,31 @@
# Semaphore Extensions

Semaphore Tools and Extensions Monorepo.

## Releases

Steps:

1. Bump a new version with:

```bash
yarn version:bump <version>
# e.g. yarn version:bump 2.0.0
```

This step creates a commit and a git tag.

2. Push the changes to main:

```bash
git push origin main
```

3. Push the new git tag:

```bash
git push origin <version>
# e.g. git push origin 2.0.0
```

After pushing the new git tag, a workflow will be triggered and will publish the Bandada packages on [npm](https://www.npmjs.com/) and release a new version on Github with its changelogs automatically.

0 comments on commit f1bfce4

Please sign in to comment.