feat: Ajout du déploiement automatique de DMH
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
7de52a3b45
commit
ccd83369fd
58
.drone.yml
58
.drone.yml
|
@ -46,6 +46,18 @@ kind: secret
|
||||||
name: TEST_AWS_SECRET_ACCESS_KEY
|
name: TEST_AWS_SECRET_ACCESS_KEY
|
||||||
data: kIq0RuZPg2gSamnbei121OHNtupioEYyVay8CnNxNz+u0fEh0c1qnAKM506h+XbwMr+HDyQEUNDM09fqzM14xmRxz8EZtqg6hXVPUcfEIG9nXI9VtnCKMwoKTMQ=
|
data: kIq0RuZPg2gSamnbei121OHNtupioEYyVay8CnNxNz+u0fEh0c1qnAKM506h+XbwMr+HDyQEUNDM09fqzM14xmRxz8EZtqg6hXVPUcfEIG9nXI9VtnCKMwoKTMQ=
|
||||||
|
|
||||||
|
---
|
||||||
|
# drone encrypt Weko/ceiba-scores $AWS_ACCESS_KEY_ID
|
||||||
|
kind: secret
|
||||||
|
name: DMH_AWS_ACCESS_KEY_ID
|
||||||
|
data: ZJi1IozPCoLgmwBnQy9OkOe7ByerC/b94aTNivtkAYh1K9A4WR+eXGNrbyXZci06HYjV8pBU
|
||||||
|
|
||||||
|
---
|
||||||
|
# drone encrypt Weko/ceiba-scores $AWS_SECRET_ACCESS_KEY
|
||||||
|
kind: secret
|
||||||
|
name: DMH_AWS_SECRET_ACCESS_KEY
|
||||||
|
data: sLiY4plTjS73Dzw0qHaAuSR4PiHGIhb6H2i1KyP2GpjvIDyaxbR2gjsjzn3E8e0gAtCiIM10nbvvAMvGmPoh1dLuYlmHj2YdOQA8wbjkA9jSqe9owbfxfrcEuDA=
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
|
@ -183,3 +195,49 @@ volumes:
|
||||||
- name: node_modules
|
- name: node_modules
|
||||||
host:
|
host:
|
||||||
path: /tmp/drone/cache/weko/test.scores.ceiba-conseil.com/node_modules
|
path: /tmp/drone/cache/weko/test.scores.ceiba-conseil.com/node_modules
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: DMH
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: install npm
|
||||||
|
image: node:current-alpine
|
||||||
|
volumes:
|
||||||
|
- name: node_modules
|
||||||
|
path: /drone/src/node_modules
|
||||||
|
commands:
|
||||||
|
- npm i
|
||||||
|
- npm run fetchData
|
||||||
|
- npm run lint
|
||||||
|
- apk add --no-cache jq
|
||||||
|
- echo $(cat src/data.json | jq -c '[.[4]]') > src/data.json
|
||||||
|
- npm run build
|
||||||
|
|
||||||
|
- name: deploy on s3
|
||||||
|
image: minio/mc
|
||||||
|
environment:
|
||||||
|
AWS_ACCESS_KEY_ID:
|
||||||
|
from_secret: DMH_AWS_ACCESS_KEY_ID
|
||||||
|
AWS_SECRET_ACCESS_KEY:
|
||||||
|
from_secret: DMH_AWS_SECRET_ACCESS_KEY
|
||||||
|
commands:
|
||||||
|
- mc alias set garage https://s3.garage.resilien.cloud $AWS_ACCESS_KEY_ID $AWS_SECRET_ACCESS_KEY --api S3v4
|
||||||
|
- mc mirror --overwrite /drone/src/dist garage/dmh.ceiba-conseil.com
|
||||||
|
|
||||||
|
- name: notify
|
||||||
|
image: plugins/matrix@sha256:f1affb31b0c86963c97c6f976fa0dcb3cc84272057fd8558d609d28b3064bd7f
|
||||||
|
settings:
|
||||||
|
homeserver: https://converser.eu
|
||||||
|
roomid: "QwOITmkKxRJJyCSDOZ:converser.eu"
|
||||||
|
userid: "resilien:converser.eu"
|
||||||
|
accesstoken:
|
||||||
|
from_secret: MATRIX_ACCESSTOKEN
|
||||||
|
when:
|
||||||
|
status: [ failure ]
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: node_modules
|
||||||
|
host:
|
||||||
|
path: /tmp/drone/cache/weko/dmh.ceiba-conseil.com/node_modules
|
||||||
|
|
Loading…
Reference in New Issue