File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 - created
77
88jobs :
9- test_jdk :
9+ build_java_and_docker :
1010 name : Linux (JDK 13)
1111 runs-on : ubuntu-latest
1212 steps :
@@ -19,13 +19,13 @@ jobs:
1919 - name : Install
2020 run : ./mvnw install -V -B --no-transfer-progress -DskipTests=true -Dmaven.javadoc.skip=true -B -V
2121 - name : Build an image from Dockerfile
22- run : docker/all-in-one/build.sh
22+ run : docker/all-in-one/build.sh ${{ github.ref_name }}
2323
2424 sbom :
2525 name : Generate merged SBOM
2626 if : github.event_name == 'release' || (github.ref_name == 'main' && github.event_name != 'pull_request')
2727 runs-on : ubuntu-latest
28- needs : test_jdk
28+ needs : build_java_and_docker
2929 steps :
3030 - uses : actions/checkout@v6
3131
Original file line number Diff line number Diff line change 11#! /bin/sh
22dir >> log.txt
33BASE_PWD=" $PWD "
4- FLOWABLE_VERSION=6.5.0
4+ FLOWABLE_VERSION=${1 :- 6.5.0}
55
66echo " Initializing for version $FLOWABLE_VERSION "
77
@@ -37,4 +37,4 @@ cd $BASE_PWD
3737
3838echo " Building Docker image for version: $FLOWABLE_VERSION "
3939
40- docker build -t adito/flowable:2026.0.1 .
40+ docker build -t adito/flowable:$FLOWABLE_VERSION .
You can’t perform that action at this time.
0 commit comments