From 5625443a265f8bda8a1f8a0e2269b65acd562d3c Mon Sep 17 00:00:00 2001 From: blam Date: Tue, 8 Mar 2022 15:07:41 +0100 Subject: [PATCH] chore: added a note in the migration sheet Signed-off-by: blam --- .../migrating-from-v1beta2-to-v1beta3.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3.md b/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3.md index 559cb036e0..1f771b4eaf 100644 --- a/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3.md +++ b/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3.md @@ -162,6 +162,24 @@ away in future versions and the `RepoUrlPicker` will return an object so `parameters.repoUrl` will already be a `{ host: string; owner: string; repo: string }` 🚀 +## Links should be used instead of named outputs + +Previously, it was possible to provide links to the frontend using the named output `entityRef` and `remoteUrl`. +These should be moved to `links` under the `output` object instead. + +```diff + output: +- remoteUrl: '{{ steps.publish.output.remoteUrl }}' +- entityRef: '{{ steps.register.output.entityRef }}' ++ links: ++ - title: Repository ++ url: ${{ steps.publish.output.remoteUrl }} ++ - title: Open in catalog ++ icon: catalog ++ entityRef: ${{ steps.register.output.entityRef }} + +``` + ### Summary Of course, we're always available on [discord](https://discord.gg/MUpMjP2) if