adding AWS creds configuration step
This commit is contained in:
parent
6d22067f87
commit
414a1b74d4
|
@ -25,10 +25,16 @@ jobs:
|
||||||
if: ${{ !github.event.inputs.version }}
|
if: ${{ !github.event.inputs.version }}
|
||||||
id: version
|
id: version
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y jq
|
|
||||||
release_version=$(cat lerna.json | jq -r '.version')
|
release_version=$(cat lerna.json | jq -r '.version')
|
||||||
echo "::set-output name=release_version::$release_version"
|
echo "::set-output name=release_version::$release_version"
|
||||||
|
|
||||||
|
- name: Configure AWS Credentials
|
||||||
|
uses: aws-actions/configure-aws-credentials@v1
|
||||||
|
with:
|
||||||
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
aws-region: eu-west-1
|
||||||
|
|
||||||
- name: Deploy to EKS
|
- name: Deploy to EKS
|
||||||
uses: craftech-io/eks-helm-deploy-action@v1
|
uses: craftech-io/eks-helm-deploy-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue