Skip to content

Commit

Permalink
get rid of warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo-SF committed Aug 11, 2024
1 parent 069f432 commit 178b1db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand All @@ -58,7 +58,7 @@ jobs:

- name: Get the short SHA
id: vars
run: echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
run: echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_ENV

- name: Deploy to Kubernetes
run: |
Expand All @@ -76,4 +76,4 @@ jobs:
release_name="ldsa-portal-dev"
fi
helm upgrade --install $release_name ./ldsa-portal --values $values_file --set image.tag=${{ steps.vars.outputs.short_sha }}
helm upgrade --install $release_name ./ldsa-portal --values $values_file --set image.tag=${{ env.short_sha }}

0 comments on commit 178b1db

Please sign in to comment.