We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0126c7f + b9801d3 commit 5607bc7Copy full SHA for 5607bc7
action.yml
@@ -8,9 +8,12 @@ inputs:
8
app:
9
description: Convox app name
10
required: true
11
+ description:
12
+ description: Convox build description
13
+ required: false
14
outputs:
15
release:
16
description: Release ID of the created build
17
runs:
18
using: docker
- image: Dockerfile
19
+ image: Dockerfile
entrypoint.sh
@@ -1,7 +1,7 @@
1
#!/bin/sh
2
echo "Building"
3
export CONVOX_RACK=$INPUT_RACK
4
-release=$(convox build --app $INPUT_APP --id)
+release=$(convox build --app $INPUT_APP --description "$INPUT_DESCRIPTION" --id)
5
if [ -z "$release" ]
6
then
7
echo "Build failed"
0 commit comments