kind: pipeline name: hugo type: docker platform: os: linux arch: arm64 trigger: branch: - main steps: - name: build hugo site # image: greglebreton/drone-hugo:arm64 image: plugins/hugo settings: hugo_version: 0.111.3 theme: silhouette-hugo extended: true validate: true config: config.toml content: content output: ./public commands: - hugo - name: deploy site on server image: greglebreton/drone-rsync:aarch64 settings: hosts: ["192.168.1.100"] target: /var/www/html/hugo-site source: public/* port: 2021 user: from_secret: RSYNC_USER key: from_secret: RSYNC_SSH_KEY - name: notify image: greglebreton/drone-email:arm64 settings: from.address: greg.lebreton@hotmail.com host: smtp-mail.outlook.com port: 587 debug: true username: greg.lebreton@hotmail.com password: from_secret: MAIL_PASSWORD recipients: [ greg.lebreton@hotmail.com ] subject: > [{{ build.status }}] {{ repo.owner }}/{{ repo.name }} body: > 📝 {{repo.name}} / {{commit.branch}} - {{commit.message}}
{{#success build.status}} ✅ succeeded for 👷‍♂️ build {{build.number}} {{else}} 🛑 failed for 👷‍♂️ build {{build.number}} {{/success}}
when: status: [ success, failure ]