Skip to content

Commit

Permalink
feature: Add secrets that are required from caller workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Dimitris Kargatzis <dkargatzis@gmail.com>
  • Loading branch information
dkargatzis committed Mar 9, 2024
1 parent 88f228f commit 27ffa7f
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@ on:
description: 'The path of the chart which defines the Kubernetes resources and configurations used for deploying the application to EKS.'
type: string
required: true
secrets:
AWS_ACCESS_KEY_ID:
required: true
AWS_SECRET_ACCESS_KEY:
required: true

concurrency:
group: ${{ inputs.release_name }}
Expand All @@ -46,7 +51,7 @@ jobs:
deploy:
name: Setup, Build and Publish Docker image to ECR, and Deploy to EKS using Helm
runs-on: ubuntu-latest
# environment: ${{ inputs.environment }}
environment: ${{ inputs.environment }}
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
ENVIRONMENT: ${{ inputs.environment }}
Expand Down

0 comments on commit 27ffa7f

Please sign in to comment.