|
1 | 1 | name: Build with specific Quarkus version |
2 | | -run-name: 'Build with specific Quarkus version:\n |
3 | | - quarkus-version-jq-cmd: ${{ inputs.quarkus-version-jq-cmd }}\n |
4 | | - josdk-pr: ${{ inputs.josdk-pr }}\n |
5 | | - quarkus-pr: ${{ inputs.quarkus-pr }}\n |
6 | | - fkc-pr: ${{ inputs.fkc-pr }}\n |
7 | | - fkc-version: ${{ inputs.fkc-version }}\n |
8 | | - quarkus-version: ${{ inputs.quarkus-version }}\n |
9 | | - java-version: ${{ inputs.java-version }}\n |
10 | | - branch: ${{ inputs.branch }}\n |
11 | | - native-modules: ${{ inputs.native-modules }}\n |
12 | | - profiles: ${{ inputs.profiles }} |
13 | | - repository (workflow_call): ${{ inputs.repository }}\n' |
14 | 2 |
|
15 | 3 | on: |
16 | 4 | workflow_call: |
|
98 | 86 | runs-on: ubuntu-latest |
99 | 87 |
|
100 | 88 | steps: |
| 89 | + - name: Input parameters |
| 90 | + id: input-params |
| 91 | + run: | |
| 92 | + echo "quarkus-version-jq-cmd: ${{ inputs.quarkus-version-jq-cmd }}" |
| 93 | + echo "josdk-pr: ${{ inputs.josdk-pr }}" |
| 94 | + echo "quarkus-pr: ${{ inputs.quarkus-pr }}" |
| 95 | + echo "fkc-pr: ${{ inputs.fkc-pr }}" |
| 96 | + echo "fkc-version: ${{ inputs.fkc-version }}" |
| 97 | + echo "quarkus-version: ${{ inputs.quarkus-version }}" |
| 98 | + echo "java-version: ${{ inputs.java-version }}" |
| 99 | + echo "branch: ${{ inputs.branch }}" |
| 100 | + echo "native-modules: ${{ inputs.native-modules }}" |
| 101 | + echo "profiles: ${{ inputs.profiles }}" |
| 102 | + echo "repository (workflow_call): ${{ inputs.repository }}" |
| 103 | +
|
101 | 104 | - uses: actions/checkout@v4 |
102 | 105 | with: |
103 | 106 | ref: ${{ inputs.branch }} |
|
0 commit comments