You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
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
|
|
|
|
|
|
trigger:
|
|
|
branch:
|
|
|
- master
|
|
|
|
|
|
steps:
|
|
|
|
|
|
####### DOCKER BUILD AND PUSH TO REGISTRY ########
|
|
|
# - name: build docker image and push to registry
|
|
|
# image: plugins/docker
|
|
|
# volumes:
|
|
|
# - name: appsource
|
|
|
# path: "/src"
|
|
|
# - 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:
|
|
|
- npm install
|
|
|
- npm build
|
|
|
|
|
|
|
|
|
- name: deploy on server
|
|
|
image: drillster/drone-rsync
|
|
|
settings:
|
|
|
hosts: ["192.168.1.101"]
|
|
|
target: /workspace/terminal-cv/site
|
|
|
source: ./dist/*
|
|
|
port: 2021
|
|
|
user:
|
|
|
from_secret: RSYNC_USER
|
|
|
key:
|
|
|
from_secret: RSYNC_STACK_KEY
|
|
|
|
|
|
######## TELEGRAM NOTIFICATION ########
|
|
|
|
|
|
- name: notification
|
|
|
image: appleboy/drone-telegram
|
|
|
settings:
|
|
|
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
|
|
|
|