Mise à jour de '.drone.yml'
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
gregandev 2023-06-15 18:33:39 +02:00
parent ab4391ce15
commit 6664950a85

View File

@ -2,12 +2,12 @@ kind: pipeline
name: hugo name: hugo
type: docker type: docker
platform: platform:
os: linux os: linux
arch: arm64 arch: arm64
trigger: trigger:
branch: branch:
- master - master
steps: steps:
@ -33,42 +33,42 @@ steps:
######## NPM BROKEN ######## ######## NPM BROKEN ########
- name: install npm dependancies - name: install npm dependancies
image: node image: node
commands: commands:
- npm install - npm install
- npm build - npm build
- name: deploy on server - name: deploy on server
image: drillster/drone-rsync image: drillster/drone-rsync
settings: settings:
hosts: ["192.168.1.101"] hosts: ["192.168.1.101"]
target: /workspace/terminal-cv/site target: /workspace/terminal-cv/site
source: ./dist/* source: ./dist/*
port: 2021 port: 2021
user: user:
from_secret: RSYNC_USER from_secret: RSYNC_USER
key: key:
from_secret: RSYNC_STACK_KEY from_secret: RSYNC_STACK_KEY
######## TELEGRAM NOTIFICATION ######## ######## TELEGRAM NOTIFICATION ########
- name: notification - name: notification
image: appleboy/drone-telegram image: appleboy/drone-telegram
settings: settings:
token: token:
from_secret: TELEGRAM_TOKEN from_secret: TELEGRAM_TOKEN
to: to:
from_secret: TELEGRAM_USERID from_secret: TELEGRAM_USERID
message: > message: >
📝 {{repo.name}} / {{commit.branch}} - {{commit.message}} 📝 {{repo.name}} / {{commit.branch}} - {{commit.message}}
{{#success build.status}} {{#success build.status}}
✅ succeeded for 👷‍♂️ build {{build.number}} ✅ succeeded for 👷‍♂️ build {{build.number}}
{{else}} {{else}}
🛑 failed for 👷‍♂️ build {{build.number}} 🛑 failed for 👷‍♂️ build {{build.number}}
{{/success}} {{/success}}
when: when:
status: status:
- failure - failure
- success - success