Skip to content

Commit 02c5e54

Browse files
Remove working dir from secrets script job
1 parent 314c332 commit 02c5e54

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/actions/cdk-deploy/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ runs:
5656
- name: Get relevant environment configuration from aws secrets
5757
if: inputs.env_aws_secret_name != ''
5858
shell: bash
59-
working-directory: ${{ inputs.dir }}
6059
env:
6160
AWS_DEFAULT_REGION: us-west-2
6261
run: python ${{ inputs.script_path }} --secret-id ${{ inputs.env_aws_secret_name }}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if: ${{ needs.define-environment.outputs.env_name }}
3333
needs: [define-environment]
3434
environment: ${{ needs.define-environment.outputs.env_name }}
35-
concurrency: ${{ needs.define-environment.outputs.env_name }}
35+
concurrency: ${{ needs.define-environment.outputs.env_name }}
3636

3737
steps:
3838
- name: Checkout

0 commit comments

Comments
 (0)