sb-mig 5.0.4-beta.1 → 5.0.4-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -485,6 +485,19 @@ And then you can use it like that:
|
|
|
485
485
|
sb-mig debug
|
|
486
486
|
```
|
|
487
487
|
|
|
488
|
+
|
|
489
|
+
# Releasing
|
|
490
|
+
|
|
491
|
+
## Flow of branching out and merging
|
|
492
|
+
- Before creating feature branch from beta, make sure you have newest beta. (by `git pull origin beta`).
|
|
493
|
+
- Create feature branch from beta
|
|
494
|
+
- Do your changes
|
|
495
|
+
- Create PR from feature branch to beta (it will run checks on your feature branch)
|
|
496
|
+
- Merge PR to beta (it will release beta channel)
|
|
497
|
+
- Create PR from beta to master (it will run checks on beta branch)
|
|
498
|
+
- Merge PR to master (it will release stable channel)
|
|
499
|
+
- After release properly done, make sure to pull master to beta (by `git pull origin master`), Push directly, resolve conflicts in favor of master.
|
|
500
|
+
|
|
488
501
|
## Roadmap
|
|
489
502
|
|
|
490
503
|
- [ ] Sync / Migrate content (stories)
|
package/package.json
CHANGED