From cd374834ca465dd977c054a5c67138a6dcebbf5f Mon Sep 17 00:00:00 2001 From: Leon Mika Date: Sat, 2 May 2026 11:43:16 +1000 Subject: [PATCH] Fixed the action --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index fb9ef2f..8dfbd0e 100644 --- a/action.yml +++ b/action.yml @@ -28,11 +28,11 @@ inputs: s3-region: { description: "AWS region", required: false, default: "us-east-1" } outputs: - version: { description: "Resolved version string", value: ${{ steps.run.outputs.version }} } - app-name: { description: "Resolved app name", value: ${{ steps.run.outputs.app-name }} } - artifact-path: { description: "Local absolute path to the .app.zip", value: ${{ steps.run.outputs.artifact-path }} } - artifact-filename: { description: "Filename of the .app.zip", value: ${{ steps.run.outputs.artifact-filename }} } - s3-url: { description: "s3://… URL if uploaded, else empty", value: ${{ steps.run.outputs.s3-url }} } + version: { description: "Resolved version string", value: "${{ steps.run.outputs.version }}" } + app-name: { description: "Resolved app name", value: "${{ steps.run.outputs.app-name }}" } + artifact-path: { description: "Local absolute path to the .app.zip", value: "${{ steps.run.outputs.artifact-path }}" } + artifact-filename: { description: "Filename of the .app.zip", value: "${{ steps.run.outputs.artifact-filename }}" } + s3-url: { description: "s3://… URL if uploaded, else empty", value: "${{ steps.run.outputs.s3-url }}" } runs: using: composite