From b127e03b7e87789f39d7eff0755f31dd2e0fc510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20P=C3=B6schl?= Date: Mon, 31 May 2021 14:08:30 +0200 Subject: [PATCH] Fix `version` and `image` outputs (#17) --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 051a174..48b9cbb 100644 --- a/action.yaml +++ b/action.yaml @@ -48,10 +48,10 @@ outputs: value: ${{ steps.find.outputs.target }} image: description: Image-template of the add-on - value: ${{ steps.find.outputs.basic.image }} + value: ${{ steps.basic.outputs.image }} version: description: Returns the version of the add-on - value: ${{ steps.find.outputs.basic.version }} + value: ${{ steps.basic.outputs.version }} runs: using: "composite"