Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,20 @@ after you run git pull and made your changes you can use the build.sh script in
### CICD
```mermaid
graph TD;
local--push-->p[produciton branch];
p--trigger--> b[gh action build];
b--deploy-->d1[gh pages production deployment]
l[local]--push-->p[produciton branch];
l--deploy-->d1[gh pages production deployment]

p-->m[master branch]


p--trigger-->pr
pr-->a[awaiting approval]
d1 <--review-->a
a--trigger-->a2[gh action for final deployment]

a-->m
m--trigger-->a2[gh action for final deployment]
d1 <--review-->a

a2-->f[final build]
p-->f
f-->v[deploy to netlify]
m-->f
f-->v[deploy to netlify]

Loading