File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
125152Please open a [ new issue] ( https://github.com/Blocship/star_book/issues/new/choose ) including steps to reproduce the problem you're experiencing.
You can’t perform that action at this time.
0 commit comments