Skip to content
Snippets Groups Projects
.drone.yml 1.52 KiB
Newer Older
Princelle Maxime's avatar
Princelle Maxime committed
kind: pipeline
type: docker
name: deploy

clone:
  disable: true

steps:
- name: pull
  image: appleboy/drone-ssh
  settings:
    host: flash.princelle.org
    username: mprincelle
    port: 22
    key:
      from_secret: ci_key
    script:
      - cd /app/uni/erp/back
      - git fetch --all
      - git reset --hard origin/master
      - git pull

- name: configure
  image: appleboy/drone-ssh
  settings:
    host: flash.princelle.org
    username: mprincelle
    port: 22
    key:
      from_secret: ci_key
    script:
      - cd /app/uni/erp/back
      - echo -e "\napi.key=theapikey" >> src/main/resources/application.properties
      - echo -e "api.key=theapikey" > src/main/resources/apikey.properties
      - echo -e "APP_PORT=2001" > .env

- name: build
  image: appleboy/drone-ssh
  settings:
    host: flash.princelle.org
    username: mprincelle
    port: 22
    key:
      from_secret: ci_key
    script:
      - cd /app/uni/erp/back
      - docker-compose up -d


- name: discord notification
  image: appleboy/drone-discord
  settings:
    webhook_id:
      from_secret: discord_webhook_id
    webhook_token:
      from_secret: discord_webhook_token
    username: "Drone Princelle (ERP - back)"
    avatar_url: https://s3.princelle.org/share/drone-ci.png
    message: >
      {{#success build.status}}
        Successfully deployed ERP (back) on Princelle Infrastructure! (https://back.erp.uni.princelle.org)
Princelle Maxime's avatar
Princelle Maxime committed
      {{else}}
        Error on deploying ERP (back) on Princelle Infrastructure.
      {{/success}}


trigger:
  branch:
  - master