File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 3
3
# separate terms of service, privacy policy, and support
4
4
# documentation.
5
5
6
- name : Publish release to Maven Central
6
+ name : Build and Publish Docker Builds
7
7
on :
8
8
release :
9
9
types :
@@ -25,13 +25,13 @@ jobs:
25
25
with :
26
26
distribution : ' zulu'
27
27
java-version : ' 11'
28
- - name : Publish
28
+ - name : Build
29
29
run : |
30
30
export VERSION=${{github.ref_name}}
31
31
export REL_VER=`echo ${VERSION:1}`
32
32
echo "Release version is $REL_VER"
33
33
echo "RELEASE_VERSION=$REL_VER" >> $GITHUB_ENV
34
- ./gradlew publish -Pversion=$REL_VER -PmavenCentral -Pusername=${{ secrets.SONATYPE_USERNAME }} -Ppassword=${{ secrets.SONATYPE_PASSWORD }}
34
+ ./gradlew build -Pversion=$REL_VER
35
35
echo "Building UI"
36
36
ls -ltr server/build/libs
37
37
docker/build-ui.sh
Original file line number Diff line number Diff line change @@ -73,14 +73,12 @@ docker pull orkesio/orkes-conductor-community:latest
73
73
74
74
### Published Artifacts
75
75
76
- * ** Group:** ` io.orkes.conductor `
77
- * ** Artifacts:** ` orkes-conductor-community-{server,persistence,archive} `
78
-
79
- | Artifact | Gradle |
80
- | -------------| -------------------------------------------------------------------------------------|
81
- | server | ` implementation 'io.orkes.conductor:orkes-conductor-community-server:VERSION' ` |
82
- | persistence | ` implementation 'io.orkes.conductor:orkes-conductor-community-persistence:VERSION' ` |
83
- | archive | ` implementation 'io.orkes.conductor:orkes-conductor-community-archive:VERSION' ` |
76
+ The docker files are published at the following:
77
+ #### Server build suitable for the production deployment
78
+ https://hub.docker.com/r/orkesio/orkes-conductor-community
79
+
80
+ #### Local build useful for local build and development
81
+ https://hub.docker.com/r/orkesio/orkes-conductor-community-standalone
84
82
85
83
#### Production Configuration Recommendations
86
84
The container and server jar published come with sensible defaults that work for most use cases.
You can’t perform that action at this time.
0 commit comments