Update .gitlab-ci.yml, shields/Makefile, shields/version files

This commit is contained in:
2021-03-01 20:23:58 +00:00
parent df57e4cb79
commit a245874763
3 changed files with 33 additions and 0 deletions

19
shields/Makefile Normal file
View File

@ -0,0 +1,19 @@
NAMESPACE=alemairebe
include version
IMAGE=shields
push: get decompress build
get:
wget https://github.com/badges/shields/archive/$(VERSION).tar.gz
decompress:
tar $(VERSION).tar.bz2
build:
docker buildx build --platform linux/amd64,linux/arm64 --push \
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) shields-$(VERSION)