Skip to content

Commit

Permalink
update release methods for developer
Browse files Browse the repository at this point in the history
  • Loading branch information
atsushi.sada committed Dec 29, 2024
1 parent c1a72d5 commit 794476c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ git checkout -b feature/your-feature-name
go test
```

3. Release new version
```bash
git tag -d v0.0.9 # Delete the local tag
git push origin --delete v0.0.9 # Delete the remote tag (if it's pushed)
git tag v0.0.9 # Create the new tag
git push
git push origin v0.0.9 # Push the new tag to the remote repository
```

## Testing

- Write unit tests witten in Go for new functionality
Expand Down

0 comments on commit 794476c

Please sign in to comment.