-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (35 loc) · 1.15 KB
/
release.yaml
File metadata and controls
43 lines (35 loc) · 1.15 KB
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
name: Release - Platform
on:
workflow_dispatch:
inputs:
release-version:
description: Release Version
required: true
default: 2.0.0
snapshot-version:
description: Snapshot Version
required: true
default: 3.0.0-SNAPSHOT
run-name: 'version set to ${{ inputs.release-version }} for release'
jobs:
release:
uses: codbex/codbex-infra/.github/workflows/platform-release.yaml@main
with:
platform-name: codbex-hyperion
maven-release: true
release-version: ${{ inputs.release-version }}
snapshot-version: ${{ inputs.snapshot-version }}
docker-release: true
release-otc-helm-chart: true
release-content: |
## codbex-hyperion - ${{ inputs.release-version }}
Business Process Platform
## Deployment
```
docker run --name codbex-hyperion \
--rm -p 80:80 -p 8081:8081 \
ghcr.io/codbex/codbex-hyperion:${{ inputs.release-version }}
```
## Access points:
- [/services/web/ide/](http://localhost/services/web/ide/) - Web IDE
secrets: inherit