File tree 2 files changed +38
-13
lines changed
2 files changed +38
-13
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ pipeline {
22
22
COMPOSE_FILE = ' docker/docker-compose.ci.yml'
23
23
COMPOSE_INTERACTIVE_NO_CLI = 1
24
24
BUILDX_NAME = " ${ COMPOSE_PROJECT_NAME} "
25
- DOCS_BUCKET = ' jc21-npm-site'
26
- DOCS_CDN = ' EN1G6DEWZUTDT'
27
25
}
28
26
stages {
29
27
stage(' Environment' ) {
@@ -175,16 +173,33 @@ pipeline {
175
173
}
176
174
}
177
175
stage(' Docs Deploy' ) {
178
- when {
179
- allOf {
180
- branch ' master'
181
- not {
182
- equals expected : ' UNSTABLE' , actual : currentBuild. result
176
+ parallel {
177
+ stage(' Master' ) {
178
+ when {
179
+ allOf {
180
+ branch ' master'
181
+ not {
182
+ equals expected : ' UNSTABLE' , actual : currentBuild. result
183
+ }
184
+ }
185
+ }
186
+ steps {
187
+ npmDocsReleaseMaster()
188
+ }
189
+ }
190
+ stage(' Develop' ) {
191
+ when {
192
+ allOf {
193
+ branch ' develop'
194
+ not {
195
+ equals expected : ' UNSTABLE' , actual : currentBuild. result
196
+ }
197
+ }
198
+ }
199
+ steps {
200
+ npmDocsReleaseDevelop()
183
201
}
184
202
}
185
- }
186
- steps {
187
- npmDocsRelease(" $DOCS_BUCKET " , " $DOCS_CDN " )
188
203
}
189
204
}
190
205
stage(' PR Comment' ) {
Original file line number Diff line number Diff line change @@ -98,7 +98,18 @@ Password: changeme
98
98
Immediately after logging in with this default user you will be asked to modify your details and change your password.
99
99
100
100
101
- ## Contributors
101
+ ## Contributing
102
+
103
+ All are welcome to create pull requests for this project, against the ` develop ` branch. Official releases are created from the ` master ` branch.
104
+
105
+ CI is used in this project. All PR's must pass before being considered. After passing,
106
+ docker builds for PR's are available on dockerhub for manual verifications.
107
+
108
+ Documentation within the ` develop ` branch is available for preview at
109
+ [ https://develop.nginxproxymanager.com ] ( https://develop.nginxproxymanager.com )
110
+
111
+
112
+ ### Contributors
102
113
103
114
Special thanks to [ all of our contributors] ( https://github.com/NginxProxyManager/nginx-proxy-manager/graphs/contributors ) .
104
115
@@ -107,5 +118,4 @@ Special thanks to [all of our contributors](https://github.com/NginxProxyManager
107
118
108
119
1 . [ Found a bug?] ( https://github.com/NginxProxyManager/nginx-proxy-manager/issues )
109
120
2 . [ Discussions] ( https://github.com/NginxProxyManager/nginx-proxy-manager/discussions )
110
- 3 . [ Development Gitter] ( https://gitter.im/nginx-proxy-manager/community )
111
- 4 . [ Reddit] ( https://reddit.com/r/nginxproxymanager )
121
+ 3 . [ Reddit] ( https://reddit.com/r/nginxproxymanager )
You can’t perform that action at this time.
0 commit comments