Fixed the action
This commit is contained in:
parent
5f9dd1d702
commit
cd374834ca
10
action.yml
10
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue