Skip to content

Commit adb4401

Browse files
committed
more better syntax fizes
1 parent 81ba93f commit adb4401

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
aws-region:
99
required: true
1010
type: string
11+
secrets:
1112
aws-assume-role:
1213
required: true
13-
type: string
1414

1515
env:
1616
aws-session-name: shc-reader-github-deploy

.github/workflows/setup.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@ jobs:
1212
with:
1313
aws-region: us-east-1
1414
s3-bucket-name: ips-viewer-app
15-
aws-assume-role: ${{ secrets.GH_AWS_SERVICE_ROLE_DEV }}
15+
secrets:
16+
aws-assume-role: "${{ secrets.GH_AWS_SERVICE_ROLE_DEV }}"
1617
deploy-prod:
1718
if: contains(github.ref, 'prod')
1819
name: 'Call dev deployment workflow'
1920
uses: ./.github/workflows/deploy.yml
2021
with:
2122
aws-region: us-east-1
2223
s3-bucket-name: ips-viewer-app
24+
secrets:
2325
aws-assume-role: ${{ secrets.GH_AWS_SERVICE_ROLE_PROD }}

0 commit comments

Comments
 (0)