@@ -4,19 +4,19 @@ inputs:
4
4
VERSION :
5
5
description : specify client version
6
6
required : false
7
- default : 0.0.21
7
+ default : 0.0.26
8
8
CF_IMAGE :
9
9
description : image reported, quay.io/codefresh/newly-built-image:0.0.1
10
10
required : true
11
11
CF_HOST :
12
- description : " cluster address address : https://g.codefresh.io "
13
- required : false
12
+ description : " CSDP app-proxy exposed in cluster address: https://your.clusters.ci-cd.com/app-proxy "
13
+ required : true
14
14
CF_VERBOSE :
15
15
description : " verbose output"
16
16
required : false
17
- CONTAINER_REGISTRY_INTEGRATION :
17
+ CF_CONTAINER_REGISTRY_INTEGRATION :
18
18
required : false
19
- description : list of enrichers separated by commas
19
+ description : " list of container integration "
20
20
CF_ENRICHERS :
21
21
required : false
22
22
description : " list of integrations separated by commas: jira, github"
60
60
using : " composite"
61
61
steps :
62
62
- shell : bash
63
+ env :
64
+ VERSION : ${{ inputs.VERSION }}
65
+ CF_IMAGE : ${{ inputs.CF_IMAGE }}
66
+ CF_HOST : ${{ inputs.CF_HOST }}
67
+ CF_VERBOSE : ${{ inputs.CF_VERBOSE }}
68
+ CF_CONTAINER_REGISTRY_INTEGRATION : ${{ inputs.CF_CONTAINER_REGISTRY_INTEGRATION }}
69
+ CF_ENRICHERS : ${{ inputs.CF_ENRICHERS }}
70
+ CF_INSECURE : ${{ inputs.CF_INSECURE }}
71
+ CF_WORKFLOW_URL : ${{ inputs.CF_WORKFLOW_URL }}
72
+ CF_LOGS_URL : ${{ inputs.CF_LOGS_URL }}
73
+ CF_GIT_BRANCH : ${{ inputs.CF_GIT_BRANCH }}
74
+ CF_GIT_SHA : ${{ inputs.CF_GIT_SHA }}
75
+ CF_GIT_REPO : ${{ inputs.CF_GIT_REPO }}
76
+ CF_GIT_INTEGRATION : ${{ inputs.CF_GIT_INTEGRATION }}
77
+ CF_JIRA_PROJECT_PREFIX : ${{ inputs.CF_JIRA_PROJECT_PREFIX }}
78
+ CF_JIRA_MESSAGE : ${{ inputs.CF_JIRA_MESSAGE }}
79
+ CF_JIRA_INTEGRATION : ${{ inputs.CF_JIRA_INTEGRATION }}
80
+ CF_JIRA_FAIL_ON_NOT_FOUND : ${{ inputs.CF_JIRA_FAIL_ON_NOT_FOUND }}
81
+ CF_API_KEY : ${{ inputs.CF_API_KEY }}
63
82
run : |
64
- docker run --env-file=cf_env quay.io/codefresh/csdp-report-image:$INPUT_VERSION
83
+ env>cf_env
84
+ echo 'CF_CI_TYPE="github-actions"' >> cf_env
85
+ docker run --env-file=cf_env quay.io/codefresh/csdp-report-image:$VERSION
0 commit comments