Add a gitlab-ci.yml to build and push

Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
baalajimaestro 2022-12-11 22:12:53 +05:30
parent 5a0f3c5dda
commit bcf7ef44c5
Signed by: baalajimaestro
GPG key ID: F93C394FE9BBAFD5

7
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,7 @@
docker-build:
stage: build
before_script:
- echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" registry.baalajimaestro.me --password-stdin
script:
- docker build . -t registry.baalajimaestro.me/baalajimaestro/obsolute-paste:latest
- docker push registry.baalajimaestro.me/baalajimaestro/obsolute-paste:latest