Skip to content

Commit 04ff5b9

Browse files
authored
Merge pull request #548 from dhirajchaurasiya10/feature/git_tags_steps
Feature/Steps to create git tag and Releases
2 parents 00ef07c + e2dfc36 commit 04ff5b9

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,33 @@ routes
120120
│ └── /journal/:id/edit (EditJournalScreen)
121121
```
122122
123+
## Git Tagging and Releases
124+
125+
To automate deployment using Github releases, follow these steps:
126+
127+
- **Create a git tag**:
128+
129+
```bash
130+
git tag -a v1.0.0 -m "Release version 1.0.0"
131+
```
132+
133+
- **Push the tag to GitHub**:
134+
135+
```bash
136+
git push origin v1.0.0
137+
```
138+
139+
- **Create GitHub release**:
140+
141+
- Go to ```Releases``` section in your repository
142+
143+
- Click on ```Create a new release```
144+
145+
- Select the tag you want to release and add notes
146+
147+
- Finally, click on ```Publish release```
148+
149+
123150
## 🐛 How to Report Bugs
124151

125152
Please open a [new issue](https://github.com/Blocship/star_book/issues/new/choose) including steps to reproduce the problem you're experiencing.

0 commit comments

Comments
 (0)