Mise à jour de '.drone.yml'

v4
gregandev 1 year ago
parent 5a6b625a20
commit a0b7a5d6ae
  1. 186
      .drone.yml

@ -1,86 +1,114 @@
kind: pipeline
name: hugo build and deploy
type: docker
platform:
os: linux
arch: arm64
trigger:
branch:
- master
steps: Tickets
Demandes d'ajout
Jalons
Explorateur
Notifications
Créer…
[gregandev] Profil et réglages…
[gregandev/terminal-cv]
gregandev
/
terminal-cv
Ne plus suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
Demandes d'ajout
Projets
Versions
Wiki
Activité
Paramètres
Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
Gérer les sujets
29 Révisions
1 Branche
0 Tag
134 MiB
terminal-cv/.drone.yml
61 lignes
1.2 KiB
Brut
Lien permanent
Annotations
Historique
Escape
kind: pipeline
name: hugo
type: docker
platform:
os: linux
arch: arm64
- name: git pull submodules trigger:
image: alpine/git branch:
settings: - master
user:
from_secret: GIT_USER
password:
from_secret: GIT_PASSWORD
commands:
- git submodule update --init --recursive
- name: build hugo site steps:
image: plugins/hugo
settings:
hugo_version: 0.109.0
# theme: ameida-cv
extended: true
validate: true
# config: config.toml
# content: data
output: ./public
commands:
- apk add libc6-compat libstdc++
- /bin/hugo
- name: deploy on server ####### DOCKER BUILD AND PUSH TO REGISTRY ########
image: drillster/drone-rsync # - name: build docker image and push to registry
settings: # image: plugins/docker
hosts: ["192.168.1.100"] # volumes:
target: /var/www/html/hugo-cv # - name: appsource
source: public/* # path: "/src"
port: # - name: dockersock
from_secret: RSYNC_PORT # path: "/var/run/docker.sock"
user: # settings:
from_secret: RSYNC_USER # debug: true
key: # username:
from_secret: RSYNC_SSH_KEY # from_secret: REGISTRY_USER
# password:
# from_secret: REGISTRY_PASSWORD
# registry: "dockerregistry.gregandev.fr"
# insecure: true
# privileged: true
# repo: "greglebreton/terminal-cv"
# dockerfile: ./Dockerfile
- name: web CV to PDF ######## NPM BROKEN ########
image: python
commands:
- python3 -m pip install weasyprint
- python3 web-to-pdf.py
- name: deploy cv on terminal-cv - name: install npm dependancies
image: drillster/drone-rsync image: node
settings: commands:
hosts: ["192.168.1.101"] - npm install
target: /workspace/terminal-cv/site/resources/resume.pdf - npm build
source: ./out.pdf
port: 2021
user:
from_secret: RSYNC_USER
key:
from_secret: RSYNC_STACK_KEY
- name: notification
image: appleboy/drone-telegram - name: deploy on server
settings: image: drillster/drone-rsync
token: settings:
from_secret: TELEGRAM_TOKEN hosts: ["192.168.1.101"]
to: target: /workspace/terminal-cv/site
from_secret: TELEGRAM_USERID source: ./dist/*
when: port: 2021
status: user:
- failure from_secret: RSYNC_USER
- success key:
format: markdown from_secret: RSYNC_STACK_KEY
message: >
📝 {{repo.name}} / {{commit.branch}} - {{commit.message}} ######## TELEGRAM NOTIFICATION ########
{{#success build.status}}
✅ succeeded for 👷 build {{build.number}} - name: notification
{{else}} image: appleboy/drone-telegram
🛑 failed for 👷 build {{build.number}} settings:
{{/success}} token:
from_secret: TELEGRAM_TOKEN
to:
from_secret: TELEGRAM_USERID
message: >
📝 {{repo.name}} / {{commit.branch}} - {{commit.message}}
{{#success build.status}}
✅ succeeded for 👷 build {{build.number}}
{{else}}
🛑 failed for 👷 build {{build.number}}
{{/success}}
when:
status:
- failure
- success

Loading…
Cancel
Save