Update matrix-webhook/Makefile, .gitlab-ci.yml files

This commit is contained in:
Adrien le Maire 2021-05-10 12:34:29 +00:00
parent 26eb50901d
commit ef36a1ec1a
2 changed files with 32 additions and 0 deletions

View File

@ -20,6 +20,19 @@ element:
changes: changes:
- element/* - element/*
matrix-webhook:
stage: build
tags:
- docker
script:
- cd matrix-webhook
- make push
only:
variables:
- $CI_COMMIT_REF_PROTECTED == "true"
changes:
- matrix-webhook/*
hugo: hugo:
stage: build stage: build
tags: tags:

19
matrix-webhook/Makefile Normal file
View File

@ -0,0 +1,19 @@
NAMESPACE=alemairebe
VERSION=0.0.1
IMAGE=matrix-webhook
push: get decompress build
get:
wget https://github.com/turt2live/matrix-appservice-webhooks/archive/refs/heads/master.zip
decompress:
unzip master.zip
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) matrix-appservice-webhooks-master