File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7171 examples :
7272 if : ${{ github.ref == 'refs/heads/dw-3' && github.event_name != 'pull_request' && endsWith(needs.build.outputs.version, '-SNAPSHOT') }}
7373 needs : [build, publish]
74- uses : ./.github/workflows/examples-CI.yml
74+ uses : ./.github/workflows/examples-CI.yml
75+ with :
76+ version : ${{ needs.build.outputs.version }}
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Examples CI
22
33on :
44 workflow_call :
5+ inputs :
6+ version :
7+ required : false
8+ type : string
59
610jobs :
711 build :
2731 uses : gradle/actions/setup-gradle@v3
2832
2933 - name : Build and Check
34+ env :
35+ ORG_GRADLE_PROJECT_guiceyBom : ${{ inputs.version }}
3036 run : |
3137 chmod +x gradlew
3238 ./gradlew build --no-daemon
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ wrapper {
1111description = ' Dropwizard guicey examples'
1212
1313ext {
14- guiceyBom = ' 6.3.2-SNAPSHOT '
14+ guiceyBom = guiceyBom ?: ' 6.3.2'
1515 dwVersion = ' 3.0.14'
1616}
1717
You can’t perform that action at this time.
0 commit comments