Skip to content

Commit

Permalink
kind testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Hoeft committed Feb 13, 2024
1 parent f05e099 commit 87f8f96
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,12 @@ jobs:
- name: Get appVersion from Chart.yaml
id: chart_version
run: |
APP_VERSION=$(grep 'appVersion:' charts/tsm-node/Chart.yaml | awk '{print $2}')
APP_VERSION=$(grep 'appVersion:' charts/tsm-node/Chart.yaml | awk '{print $2}'| tr -d '\r')
echo "IMAGE_TAG=$APP_VERSION" >> $GITHUB_ENV
- name: Pull image from ECR
run: |
aws ecr get-login-password --region us-east-1 | docker login --username AWS --password-stdin $ECR_REPO
IMAGE_TAG=$(echo ${{ env.IMAGE_TAG }} | tr -d '\r')
docker pull $ECR_REPO:$IMAGE_TAG
- name: Create kind ${{ matrix.k8s }} cluster
Expand Down

0 comments on commit 87f8f96

Please sign in to comment.