Fixed the action

This commit is contained in:
Leon Mika 2026-05-02 11:43:16 +10:00
parent 5f9dd1d702
commit cd374834ca

View file

@ -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