website/.drone.yml

52 lines
784 B
YAML
Raw Normal View History

2020-09-27 23:38:55 +05:30
---
kind: pipeline
name: default
platform:
os: linux
arch: arm64
2016-11-08 18:13:24 +05:30
workspace:
2017-08-22 22:39:20 +05:30
base: /srv/app
2016-11-08 18:13:24 +05:30
path: src
2020-09-27 23:38:55 +05:30
steps:
- name: build
pull: always
image: golang:1.19
2020-09-27 23:38:55 +05:30
commands:
- make clean
- make build
2016-11-08 18:13:24 +05:30
2020-09-27 23:38:55 +05:30
- name: publish
pull: always
image: techknowlogick/drone-netlify:latest
settings:
path: public/
2020-09-27 23:38:55 +05:30
site_id: 05515f14-3702-4a84-9ff3-88ba90fe08dd
environment:
NETLIFY_TOKEN:
from_secret: netlify_token
when:
event:
- push
- name: discord
pull: always
image: appleboy/drone-discord:1
environment:
DISCORD_WEBHOOK_ID:
from_secret: discord_webhook_id
DISCORD_WEBHOOK_TOKEN:
from_secret: discord_webhook_token
when:
event:
- push
- tag
status:
- changed
- failure
2016-11-08 18:13:24 +05:30
2020-09-27 23:38:55 +05:30
trigger:
branch:
2022-08-22 21:23:02 +05:30
- main