diff options
| author | Tulir Asokan <tulir@maunium.net> | 2024-06-19 11:47:35 +0300 |
|---|---|---|
| committer | Tulir Asokan <tulir@maunium.net> | 2024-06-19 11:51:29 +0300 |
| commit | 5da539ad8409b8902effb59a04d061516e236761 (patch) | |
| tree | 42d5a9a3d10f7affbe4efbdd8dd9f5998f353ba5 /.gitlab-ci.yml | |
| parent | 6332613e13dd6378b58f8cf557419c127bb2ab1d (diff) | |
Add MSC3916-compatible giphy media repo proxy
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d5d8838 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +build giphy proxy docker: + image: docker:stable + stage: build + before_script: + - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY + script: + - docker build -t $CI_REGISTRY_IMAGE/giphyproxy:latest giphyproxy + - docker push $CI_REGISTRY_IMAGE/giphyproxy:latest + only: + - master |
