Skip to content

Commit 751b9de

Browse files
committed
Update README and github workflow to publish to docker
1 parent 64edea1 commit 751b9de

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# separate terms of service, privacy policy, and support
44
# documentation.
55

6-
name: Publish release to Maven Central
6+
name: Build and Publish Docker Builds
77
on:
88
release:
99
types:
@@ -25,13 +25,13 @@ jobs:
2525
with:
2626
distribution: 'zulu'
2727
java-version: '11'
28-
- name: Publish
28+
- name: Build
2929
run: |
3030
export VERSION=${{github.ref_name}}
3131
export REL_VER=`echo ${VERSION:1}`
3232
echo "Release version is $REL_VER"
3333
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
3535
echo "Building UI"
3636
ls -ltr server/build/libs
3737
docker/build-ui.sh

README.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,12 @@ docker pull orkesio/orkes-conductor-community:latest
7373
7474
### Published Artifacts
7575

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
8482

8583
#### Production Configuration Recommendations
8684
The container and server jar published come with sensible defaults that work for most use cases.

0 commit comments

Comments
 (0)