Mise à jour de '.drone.yml'
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
5a6b625a20
commit
a0b7a5d6ae
138
.drone.yml
138
.drone.yml
@ -1,82 +1,106 @@
|
|||||||
kind: pipeline
|
|
||||||
name: hugo build and deploy
|
Tickets
|
||||||
type: docker
|
Demandes d'ajout
|
||||||
platform:
|
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
|
os: linux
|
||||||
arch: arm64
|
arch: arm64
|
||||||
trigger:
|
|
||||||
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: git pull submodules
|
####### DOCKER BUILD AND PUSH TO REGISTRY ########
|
||||||
image: alpine/git
|
# - name: build docker image and push to registry
|
||||||
settings:
|
# image: plugins/docker
|
||||||
user:
|
# volumes:
|
||||||
from_secret: GIT_USER
|
# - name: appsource
|
||||||
password:
|
# path: "/src"
|
||||||
from_secret: GIT_PASSWORD
|
# - name: dockersock
|
||||||
|
# path: "/var/run/docker.sock"
|
||||||
|
# settings:
|
||||||
|
# debug: true
|
||||||
|
# username:
|
||||||
|
# from_secret: REGISTRY_USER
|
||||||
|
# password:
|
||||||
|
# from_secret: REGISTRY_PASSWORD
|
||||||
|
# registry: "dockerregistry.gregandev.fr"
|
||||||
|
# insecure: true
|
||||||
|
# privileged: true
|
||||||
|
# repo: "greglebreton/terminal-cv"
|
||||||
|
# dockerfile: ./Dockerfile
|
||||||
|
|
||||||
|
######## NPM BROKEN ########
|
||||||
|
|
||||||
|
- name: install npm dependancies
|
||||||
|
image: node
|
||||||
commands:
|
commands:
|
||||||
- git submodule update --init --recursive
|
- npm install
|
||||||
|
- npm build
|
||||||
|
|
||||||
- name: build hugo site
|
|
||||||
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
|
- name: deploy on server
|
||||||
image: drillster/drone-rsync
|
|
||||||
settings:
|
|
||||||
hosts: ["192.168.1.100"]
|
|
||||||
target: /var/www/html/hugo-cv
|
|
||||||
source: public/*
|
|
||||||
port:
|
|
||||||
from_secret: RSYNC_PORT
|
|
||||||
user:
|
|
||||||
from_secret: RSYNC_USER
|
|
||||||
key:
|
|
||||||
from_secret: RSYNC_SSH_KEY
|
|
||||||
|
|
||||||
- name: web CV to PDF
|
|
||||||
image: python
|
|
||||||
commands:
|
|
||||||
- python3 -m pip install weasyprint
|
|
||||||
- python3 web-to-pdf.py
|
|
||||||
|
|
||||||
- name: deploy cv on terminal-cv
|
|
||||||
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/resources/resume.pdf
|
target: /workspace/terminal-cv/site
|
||||||
source: ./out.pdf
|
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
|
||||||
|
|
||||||
- name: notification
|
######## TELEGRAM 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
|
||||||
when:
|
|
||||||
status:
|
|
||||||
- failure
|
|
||||||
- success
|
|
||||||
format: markdown
|
|
||||||
message: >
|
message: >
|
||||||
📝 {{repo.name}} / {{commit.branch}} - {{commit.message}}
|
📝 {{repo.name}} / {{commit.branch}} - {{commit.message}}
|
||||||
{{#success build.status}}
|
{{#success build.status}}
|
||||||
@ -84,3 +108,7 @@ steps:
|
|||||||
{{else}}
|
{{else}}
|
||||||
🛑 failed for 👷♂️ build {{build.number}}
|
🛑 failed for 👷♂️ build {{build.number}}
|
||||||
{{/success}}
|
{{/success}}
|
||||||
|
when:
|
||||||
|
status:
|
||||||
|
- failure
|
||||||
|
- success
|
||||||
|
Loading…
x
Reference in New Issue
Block a user