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 be1daea commit bd4bf90Copy full SHA for bd4bf90
.github/workflows/release.yml
@@ -76,9 +76,8 @@ jobs:
76
else
77
echo "quarkus-platform update will target ${quarkus_platform_branch}"
78
echo "Check if quarkus-platform also needs to be updated on main"
79
- qosdk_latest=$(curl -sL https://api.github.com/repos/quarkiverse/quarkus-operator-sdk/releases/latest | jq -r ".tag_name")
80
- echo "Latest QOSDK release: ${qosdk_latest}"
81
- if [ "${{steps.metadata.outputs.current-version}}" = "${qosdk_latest}" ]; then
+ if [ "${{ github.base_ref }}" = "main" ]; then
+# assume that if the PR targets main, then we also need to update quarkus-platform main
82
echo "need_main_pr=true" >> $GITHUB_OUTPUT
83
84
echo "No need for PR on quarkus-platform main"
0 commit comments