This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/main by this push:
     new f55b8ff47 chore(ci): release notes
f55b8ff47 is described below

commit f55b8ff47f1ea1d1cb3dcf9d57a80b23fb38f16d
Author: Pasquale Congiusti <[email protected]>
AuthorDate: Thu Oct 30 13:25:55 2025 +0100

    chore(ci): release notes
---
 .github/actions/release-nightly/action.yml | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/.github/actions/release-nightly/action.yml 
b/.github/actions/release-nightly/action.yml
index 08b170006..39dbbd0c4 100644
--- a/.github/actions/release-nightly/action.yml
+++ b/.github/actions/release-nightly/action.yml
@@ -159,14 +159,32 @@ runs:
       env:
         GITHUB_TOKEN: ${{ inputs.secretGithubToken }}
       run: |
+        RELEASE_NOTES=$(cat << 'EOF'
+Apache Camel K ${{ env.VERSION }} build for testing purposese only (unstable). 
This nightly release is using an **unsupported** operator image published as 
`${{ env.IMAGE_NAME }}:${{ env.VERSION }}`. The available platforms are AMD64 
and ARM64.
+
+## Kubectl
+```
+kubectl apply -k 
github.com/apache/camel-k/install/overlays/kubernetes/descoped?ref=v${{ 
env.VERSION }}
+```
+## Helm
+```
+helm install camel-k https://github.com/apache/camel-k/raw/v${{ env.VERSION 
}}/docs/charts/camel-k-${{ env.VERSION }}.tgz
+```
+## OLM
+Use the `operator-sdk` tool and run the bundle via:
+```
+operator-sdk run bundle docker.io/testcamelk/camel-k-bundle:${{ env.VERSION }}
+```
+EOF
+)
         TAG=v${{ env.VERSION }}
         FILES="./camel-k-client*.tar.gz sbom.json"
         echo "Creating new release for tag $TAG..."
 
         RELEASE_DATA=$(jq -n \
           --arg tag "$TAG" \
-          --arg name "Release $TAG" \
-          --arg body "Release notes go here" \
+          --arg name "$TAG" \
+          --arg body "$RELEASE_NOTES" \
           '{ tag_name: $tag, name: $name, body: $body, draft: false, 
prerelease: true }')
 
         RELEASE_RESPONSE=$(curl -s -X POST \

Reply via email to