# Generated by chant migrate from input.yml

stages:
  - build
  - deploy
workflow:
  rules:
    - if: '$CI_PIPELINE_SOURCE == "push"'

deploy:
  image: ubuntu:24.04
  rules:
    - if: '$CI_COMMIT_REF_NAME == ''refs/heads/main'' && $CI_PIPELINE_SOURCE == ''push'''
  script:
    - make deploy
  stage: deploy

notify:
  image: ubuntu:24.04
  rules:
    - when: on_failure
  script:
    - ./notify-slack.sh
  stage: build
