From 63bada6ad1a9318c6112b2a2859c867a97af2b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20St=C3=A4bler?= Date: Tue, 27 Jan 2026 20:10:13 +0100 Subject: [PATCH 1/2] Use correct release name --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 64e2e68..860b41c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -122,7 +122,7 @@ jobs: GIT_SHA=$(git rev-parse --short HEAD) make build-installer \ IMG=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.version.outputs.full }} \ - VERSION_LABEL=${{ steps.version.outputs.full }} \ + VERSION_LABEL=v${{ steps.version.outputs.full }} \ GIT_SHA_LABEL=${GIT_SHA} mv dist/install.yaml func-operator.yaml @@ -130,7 +130,8 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release create ${{ github.ref_name }} \ - --title "Release ${{ github.ref_name }}" \ + gh release create "v${{ steps.version.outputs.full }}" \ + --title "v${{ steps.version.outputs.full }}" \ --generate-notes \ + --latest=${{ steps.version.outputs.is_latest }} \ func-operator.yaml From af02c1ee7ac6476f889f0e3ffe858b1075aa88dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20St=C3=A4bler?= Date: Tue, 27 Jan 2026 20:11:31 +0100 Subject: [PATCH 2/2] Remove redundant title --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 860b41c..cffaf09 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -131,7 +131,6 @@ jobs: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release create "v${{ steps.version.outputs.full }}" \ - --title "v${{ steps.version.outputs.full }}" \ --generate-notes \ --latest=${{ steps.version.outputs.is_latest }} \ func-operator.yaml