@@ -77,26 +77,37 @@ inputs:
7777outputs :
7878 BUILD :
7979 description : Build ID of the build matching the description
80+ value : ${{ steps.convox-action.outputs.BUILD }}
8081 RELEASE :
8182 description : Release ID of the created build
83+ value : ${{ steps.convox-action.outputs.RELEASE }}
8284 DESIRED :
8385 description : Count of desired instances
86+ value : ${{ steps.convox-action.outputs.DESIRED }}
8487 RUNNING :
8588 description : Count of running instances
89+ value : ${{ steps.convox-action.outputs.RUNNING }}
8690 CPU :
8791 description : CPU scale value
92+ value : ${{ steps.convox-action.outputs.CPU }}
8893 MEMORY :
8994 description : Memory scale value
95+ value : ${{ steps.convox-action.outputs.MEMORY }}
9096 PARAM_VALUE :
9197 description : Rack parameter value
98+ value : ${{ steps.convox-action.outputs.PARAM_VALUE }}
9299 SCALING_EVENT :
93100 description : Boolean value to indicate if a scaling event is in progress
101+ value : ${{ steps.convox-action.outputs.SCALING_EVENT }}
94102 RUNNING_PROCESSES :
95103 description : Count of running processes for the service
104+ value : ${{ steps.convox-action.outputs.RUNNING_PROCESSES }}
96105 PENDING_PROCESSES :
97106 description : Count of pending processes for the service
107+ value : ${{ steps.convox-action.outputs.PENDING_PROCESSES }}
98108 UNHEALTHY_PROCESSES :
99109 description : Count of unhealthy processes for the service
110+ value : ${{ steps.convox-action.outputs.UNHEALTHY_PROCESSES }}
100111runs :
101112 using : ' composite'
102113 steps :
@@ -108,6 +119,7 @@ runs:
108119 chmod 755 /tmp/convox
109120 sudo mv /tmp/convox /usr/local/bin/convox
110121 - name : Run convox action
122+ id : convox-action
111123 shell : bash
112124 run : bash "$GITHUB_ACTION_PATH/entrypoint.sh"
113125 env :
0 commit comments