-
Notifications
You must be signed in to change notification settings - Fork 657
/
release-workflow.puml
81 lines (69 loc) · 2 KB
/
release-workflow.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
@startuml
:**Tag Triggered - Release Workflow**;
start
:Create a tag on the branch and commit on which the release
is to be based.
The tag must be in the following format:
- ""setRelease-v<Major>.<Minor>.<Patch>[-rc<Num>]""
Examples:
- To generate an RC Release (marked as a pre-release)
- ""setRelease-v1.12.6-rc0""
- To generate an official Release
- ""setRelease-v1.12.6"";
partition "**Workflow**: tag.yaml" {
floating note left
Workflow triggered
by the ""setRelease""
tag being pushed.
end note
:Extract information;
note left:Extract version number from tag
:Bump version number;
:Create Pull Request to the branch, where the tag was set on;
}
partition "**Workflow**: releasepr.yaml" {
floating note left
Workflow triggered
by Pull Request affecting
**ONLY** ""indy_node/_version_.json"".
end note
:Extract information;
if (isVersionBump) then (yes)
:Lint using ""indy-shared-gha"";
:build Docker-images using ""indy-shared-gha"";
:Execute tests (""reuseable_tests.yaml"");
:Esecute ""indy-test-automation"";
note left: WIP
:build packages using ""indy-shared-gha"";
note left: packages published to workflow
else (no)
endif
}
if (**Review PR** - All tests passed?) then (Merge PR)
partition "**Workflow**: publishRelease.yaml" {
floating note right
Workflow triggered by
pushes affecting
**ONLY**
""indy_node/_version_.json"".
end note
:Extract version number from the commit message;
if (isVersionBump) then (yes)
:Download artifacts from last successfull ""releasepr"" run;
:Create a GitHub Release;
:Set tag and title to match release version;
if (is RC Release) then (yes)
:Set pre-release checkbox;
else (no)
endif
:Publish GitHub Release
- Containing the artifacts;
:Publish Packages using ""indy-shared-gha"";
else (no)
endif
}
else (Close PR without Merging)
:Release process aborted;
endif
stop
@enduml