Skip to content

Commit c6a35c6

Browse files
Merge pull request #66 from codefresh-io/CR-12993-add-aws-role
CR-12993-add-aws-role
2 parents 6fab697 + 87006ed commit c6a35c6

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

action.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,13 @@ inputs:
9393
CF_JIRA_FAIL_ON_NOT_FOUND:
9494
required: false
9595
description: "fail in case of ticket not found"
96+
# AWS
97+
CF_AWS_ROLE:
98+
required: false
99+
description: "arn:aws:role/123456"
100+
CF_AWS_REGION:
101+
required: false
102+
description: "us-east-1"
96103
runs:
97104
using: "composite"
98105
steps:
@@ -141,6 +148,10 @@ runs:
141148
GITHUB_COMMIT_MESSAGE: "${{ github.event.head_commit.message }}"
142149
GITHUB_PAYLOAD_MESSAGE: "${{ github.event.client_payload.message }}"
143150

151+
#AWS
152+
CF_AWS_ROLE: "${{ inputs.CF_AWS_ROLE }}"
153+
CF_AWS_REGION: "${{ inputs.CF_AWS_REGION }}"
154+
144155

145156
run: |
146157
# add defaults

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csdp-report-image",
3-
"version": "0.0.85",
3+
"version": "0.0.86",
44
"description": "CI tools client reporting a buit image by calling image-report and receiving progress events",
55
"main": "index.js",
66
"repository": "git@github.com:codefresh-io/csdp-report-image.git",
@@ -18,7 +18,7 @@
1818
"test": "jest --passWithNoTests",
1919
"test:watch": "jest --watch",
2020
"test:cov": "jest --coverage",
21-
"ci-test": "yarn install && release-it -c .release-it.ci.json && yarn test && yarn prebuild",
21+
"ci-test": "yarn install && yarn test && yarn prebuild",
2222
"release": "yarn run release-it --patch --ci"
2323
},
2424
"engines": {

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name: csdp-report-image
2-
version: 0.0.85
2+
version: 0.0.86

0 commit comments

Comments
 (0)