joinlemmy-site/.drone.yml

99 lines
2.1 KiB
YAML
Raw Normal View History

---
kind: pipeline
name: amd64
platform:
os: linux
arch: amd64
steps:
- name: fetch git submodules
image: alpine/git
commands:
- git submodule init
- git submodule update --recursive
- name: yarn
image: node:14-alpine
commands:
- yarn
- name: yarn lint
image: node:14-alpine
commands:
- yarn lint
- name: yarn build:dev
image: node:14-alpine
commands:
- yarn build:dev
2022-07-22 11:02:38 +00:00
- name: nightly instance crawl
image: node:14-alpine
commands:
# libpq and openssl can probably be removed after lemmy dep is upgraded to 0.16.4+
- apk add cargo pkgconfig openssl openssl-dev libpq libpq-dev
- yarn crawl
when:
event:
- cron
2022-07-22 11:02:38 +00:00
- name: nightly build and push to docker hub
image: plugins/docker
settings:
dockerfile: Dockerfile
repo: dessalines/joinlemmy-site
2021-03-15 19:06:25 +00:00
tags:
- latest
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
2022-05-24 13:11:20 +00:00
event:
- cron
2022-07-22 11:02:38 +00:00
- name: release instance crawl
image: node:14-alpine
commands:
# libpq and openssl can probably be removed after lemmy dep is upgraded to 0.16.4+
- apk add cargo pkgconfig openssl openssl-dev libpq libpq-dev
- yarn crawl
when:
ref:
- refs/tags/*
- name: release build and push to docker hub
image: plugins/docker
settings:
dockerfile: Dockerfile
repo: dessalines/joinlemmy-site
tags:
- latest
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
ref:
- refs/tags/*
2023-02-12 13:38:54 +00:00
- name: Notify on failure
image: alpine:3
commands:
- apk add curl
- "curl -d'joinlemmy-site build failed: ${DRONE_BUILD_LINK}' ntfy.sh/lemmy_drone_ci"
when:
status:
- failure
- name: Notify on tag deploy
image: alpine:3
commands:
- apk add curl
- "curl -d'joinlemmy-site:${DRONE_TAG} deployed' ntfy.sh/lemmy_drone_ci"
when:
ref:
- refs/tags/*