Skip to content

Commit 8c18bd8

Browse files
authored
fix: Release uses correct repo (#810)
1 parent 6c665af commit 8c18bd8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Publish official image to GitHub Container Registry
22

33
on:
44
push:
5-
tags: [ "v[0-9].[0-9].[0-9]" ]
5+
tags: ["v[0-9].[0-9].[0-9]"]
66

77
jobs:
88
build:
@@ -56,7 +56,7 @@ jobs:
5656
env:
5757
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858
with:
59-
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
59+
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
6060
asset_path: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml
6161
asset_name: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}.yaml
6262
asset_content_type: application/x-yaml
@@ -68,7 +68,7 @@ jobs:
6868
env:
6969
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7070
with:
71-
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
71+
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
7272
asset_path: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml
7373
asset_name: keda-http-add-on-${{ steps.get_version.outputs.VERSION }}-crds.yaml
7474
asset_content_type: application/x-yaml

0 commit comments

Comments
 (0)