From 8c18bd8f735f311712555d9b38ec6912cf14a37f Mon Sep 17 00:00:00 2001 From: Jorge Turrado Ferrero Date: Thu, 5 Oct 2023 16:59:16 +0200 Subject: [PATCH] fix: Release uses correct repo (#810) --- .github/workflows/build_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index b2d5a5e7..9c347738 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -2,7 +2,7 @@ name: Publish official image to GitHub Container Registry on: push: - tags: [ "v[0-9].[0-9].[0-9]" ] + tags: ["v[0-9].[0-9].[0-9]"] jobs: build: @@ -56,7 +56,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - upload_url: https://uploads.github.com/repos/kedacore/keda/releases/${{ steps.get-release-info.outputs.id }}/assets?name=keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml + upload_url: https://uploads.github.com/repos/kedacore/http-add-on/releases/${{ steps.get-release-info.outputs.id }}/assets?name=keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml asset_path: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml asset_name: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml asset_content_type: application/x-yaml @@ -68,7 +68,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - upload_url: https://uploads.github.com/repos/kedacore/keda/releases/${{ steps.get-release-info.outputs.id }}/assets?name=keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml + upload_url: https://uploads.github.com/repos/kedacore/http-add-on/releases/${{ steps.get-release-info.outputs.id }}/assets?name=keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml asset_path: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml asset_name: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml asset_content_type: application/x-yaml