Skip to content

Commit

Permalink
refactor: Update build tag logic in release workflow to include borin…
Browse files Browse the repository at this point in the history
…gcrypto
  • Loading branch information
mativm02 committed May 20, 2024
1 parent fdb5739 commit e77c76c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,12 @@ jobs:
for arch in amd64 arm64; do
docker tag tykio/tyk-pump-docker-pub:${build_tag}-${arch} ${tag}-${arch} && docker push ${tag}-${arch}
done
docker manifest create ${tag} ${tag}-amd64 ${tag}-arm64 && docker manifest push ${tag}
if docker manifest inspect ${tag}; then
docker manifest create --amend ${tag} ${tag}-amd64 ${tag}-arm64
else
docker manifest create ${tag} ${tag}-amd64 ${tag}-arm64
fi
docker manifest push ${tag}
done
- name: Docker metadata for boringcrypto
id: boringcrypto_metadata
Expand Down

0 comments on commit e77c76c

Please sign in to comment.