Skip to content

Commit

Permalink
fix operator release step in CD workflow (#660)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxiamxia authored Sep 22, 2021
1 parent 11bba56 commit 774fb3f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,11 @@ jobs:
with:
key: "${{ env.PACKAGE_CACHE_KEY }}"
path: build/packages

- name: Checkout the sha
uses: actions/checkout@v2
with:
ref: ${{ github.event.inputs.sha }}

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
Expand All @@ -343,7 +348,7 @@ jobs:
docker tag $IMAGE_NAME public.ecr.aws/$ECR_REPO:latest
docker push public.ecr.aws/$ECR_REPO:$TAG
docker push public.ecr.aws/$ECR_REPO:latest
cd build/packages/tools/release/adot-operator-images-mirror && go run ./
cd tools/release/adot-operator-images-mirror && go run ./
- name: Login Dockerhub
uses: docker/login-action@v1
Expand Down

0 comments on commit 774fb3f

Please sign in to comment.