chore: added a note in the migration sheet

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-03-08 15:07:41 +01:00
parent 55999e8268
commit 5625443a26
@@ -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