Skip to content

Commit

Permalink
added manifest for latest tag
Browse files Browse the repository at this point in the history
  • Loading branch information
emamihe committed Nov 23, 2023
1 parent c4b8deb commit c7cac1c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ jobs:
run: |
docker push kubeshop/testkube-cli:${{ steps.github_sha.outputs.sha_short }}-arm64v8
docker push kubeshop/testkube-cli:${{ steps.github_sha.outputs.sha_short }}-amd64
# adding the docker manifest for the latest image tag
docker manifest create kubeshop/testkube-cli:latest \
kubeshop/testkube-cli:${{ steps.github_sha.outputs.sha_short }}-amd64 \
kubeshop/testkube-cli:${{ steps.github_sha.outputs.sha_short }}-arm64v8
docker manifest annotate kubeshop/testkube-cli:latest kubeshop/testkube-cli:${{ steps.github_sha.outputs.sha_short }}-amd64 --arch amd64
docker manifest annotate kubeshop/testkube-cli:latest kubeshop/testkube-cli:${{ steps.github_sha.outputs.sha_short }}-arm64v8 --arch arm64 --variant v8
docker manifest push kubeshop/testkube-cli:latest
- name: Push README to Dockerhub
if: matrix.name == 'linux'
Expand Down Expand Up @@ -302,4 +309,4 @@ jobs:
with:
token: ${{ secrets.CI_BOT_TOKEN }}
repository: kubeshop/helm-charts
event-type: trigger-helm-chart-deployment-to-develop-cluster
event-type: trigger-helm-chart-deployment-to-develop-cluster

0 comments on commit c7cac1c

Please sign in to comment.