-
Notifications
You must be signed in to change notification settings - Fork 27
87 lines (67 loc) · 2.3 KB
/
release.yaml
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
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build and Publish Docker Builds
on:
release:
types:
- released
- prereleased
push:
branches: [ documentation ]
jobs:
publish:
runs-on: ubuntu-latest
environment: prod
name: Gradle Build and Publish
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Zulu JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '17'
- name: Build
run: |
export VERSION=${{github.ref_name}}
export REL_VER=`echo ${VERSION:1}`
echo "Release version is $REL_VER"
echo "RELEASE_VERSION=$REL_VER" >> $GITHUB_ENV
./gradlew build -Pversion=$REL_VER
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub Container Registry
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push Server
uses: docker/build-push-action@v3
with:
context: .
file: docker/DockerfileServer
push: true
platforms: linux/arm64,linux/amd64
tags: |
orkesio/orkes-conductor-community:latest
orkesio/orkes-conductor-community:${{ env.RELEASE_VERSION }}
- name: Build and push Standalone
uses: docker/build-push-action@v3
with:
context: .
file: docker/DockerfileStandalone
push: true
platforms: linux/arm64,linux/amd64
tags: |
orkesio/orkes-conductor-community-standalone:latest
orkesio/orkes-conductor-community-standalone:${{ env.RELEASE_VERSION }}
env:
ORG_GRADLE_PROJECT_signingKeyId: ${{ secrets.SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PASSWORD }}