We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ecb8ac commit 4478e31Copy full SHA for 4478e31
.github/workflows/build.yml
@@ -52,6 +52,12 @@ jobs:
52
with:
53
cmd: curl https://registry.quarkus.io/client/platforms | jq '.platforms[0]."current-stream-id" as $current | .platforms[0].streams[] | select(.id == $current) | .releases[0].version'
54
55
+ - name: Output retrieved versions
56
+ run: |
57
+ echo "Project defined Quarkus version: ${{ steps.quarkus-version.outputs.quarkus_version }}"
58
+ echo "Latest platform Quarkus version: ${{ steps.get-quarkus-version.outputs.value }}"
59
+ echo "Different? ${{ needs.extract-project-metadata.outputs.qosdk_quarkus_version != needs.extract-project-metadata.outputs.latest_stable_quarkus }}"
60
+
61
build-with-defined-quarkus-version:
62
needs:
63
- extract-project-metadata
0 commit comments