1
0
Fork 0
This repository has been archived on 2025-09-02. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
wsj-discord-standup-notific.../.gitlab-ci.yml
2022-05-19 14:17:47 +02:00

27 lines
618 B
YAML

default:
image: sikalabs/ci
stages:
- build
- deploy
variables:
IMAGE_TAG: $CI_COMMIT_BRANCH-$CI_COMMIT_SHORT_SHA
docker:build:
stage: build
before_script:
- echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
- docker info
script:
- docker build -t $CI_REGISTRY_IMAGE:$IMAGE_TAG .
- docker push $CI_REGISTRY_IMAGE:$IMAGE_TAG
# deploy:prod:
# stage: deploy
# environment:
# name: prod
# script:
# - helm upgrade --install ./deploy/chart/wsj-standup --set image.tag=$IMAGE_TAG
# rules:
# - if: '$CI_COMMIT_BRANCH == "main"'