Skip to content

Commit 204b80a

Browse files
authored
Merge pull request #925 from xstefank/input-params
fix: move input parameters into a build step
2 parents 800b969 + f21e96a commit 204b80a

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

.github/workflows/build-for-quarkus-version.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,4 @@
11
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'
142

153
on:
164
workflow_call:
@@ -98,6 +86,21 @@ jobs:
9886
runs-on: ubuntu-latest
9987

10088
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+
101104
- uses: actions/checkout@v4
102105
with:
103106
ref: ${{ inputs.branch }}

0 commit comments

Comments
 (0)