feat: Ajout de la compilation du site automatiquement
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Simon 2024-05-13 11:15:40 +02:00
parent bb868480c2
commit bf7cc7aced
1 changed files with 64 additions and 0 deletions

64
.drone.yml Normal file
View File

@ -0,0 +1,64 @@
---
# drone encrypt Weko/Takubeh $AWS_ACCESS_KEY_ID
kind: secret
name: PRODUCTION_AWS_ACCESS_KEY_ID
data: Sfbb990+qmAzkZ+UGyj7TLcmCt2gg3jkRBYhZu1eb5CTuum47kMvO/GuSgtiLhZXsx9uDue1
---
# drone encrypt Weko/Takubeh $AWS_SECRET_ACCESS_KEY
kind: secret
name: PRODUCTION_AWS_SECRET_ACCESS_KEY
data: Vhe3xjkJBekUUQGo73/tcEKGn2IumJFvDOiicPgecKCTjIP/kgv2rtLFmXehF+DYmObFc00Iw/2P+z6C211A0D76rBZZTi9pUevHmkd7WmGGZhycR3aI/rf6uYc=
---
kind: pipeline
type: docker
name: prod
# clone:
# disable: true
steps:
# - name: clone
# image: alpine/git
# commands:
# - git clone --recursive $DRONE_REPO_LINK .
# - name: install npm
# image: node:current-alpine
# commands:
# - (cd themes/hugo-theme-lowtech && npm i)
- name: build website
image: hugomods/hugo:base-0.121.1
commands:
- hugo --minify --environment production
# - name: typo
# image: node:current-alpine
# volumes:
# - name: hugo-theme-lowtech_node_modules
# path: /drone/src/themes/hugo-theme-lowtech/node_modules
# commands:
# - node themes/hugo-theme-lowtech/scripts/typo
- name: deploy
image: hugomods/hugo:base-0.121.1
environment:
AWS_ACCESS_KEY_ID:
from_secret: PRODUCTION_AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY:
from_secret: PRODUCTION_AWS_SECRET_ACCESS_KEY
commands:
- hugo deploy --environment production
- 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 ]