What is the best method for deploying Drupal 8 modules & themes using git flow. I am confused as you need to install them, however, I need to deploy releases of the module/theme up regularly. Sorry if it's a stupid question.
Asked
Active
Viewed 165 times
2 Answers
1
- Start new feature
- Install module/do theme stuff
- Commit, publish/push feature
- Test what you just did
git flow feature finish
feature back into dev branch (or wherever you want it to go)

Coleman
- 422
- 2
- 11
0
Not sure for D8 (should be same as believe) but in D7, I used to start feature first (git flow feature start ), update local codebase, commit and publish the feature. Depending on your git workflow, it might need some extra steps into getting this deployed to production.
Once in production, you update your database usual way.

perke
- 50
- 7