2021-03-15 17:18:03 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: amd64
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: fetch git submodules
|
|
|
|
image: alpine/git
|
|
|
|
commands:
|
|
|
|
- git submodule init
|
2022-04-08 10:16:47 +00:00
|
|
|
- git submodule update --recursive
|
2021-03-15 17:18:03 +00:00
|
|
|
|
|
|
|
- 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-05-23 19:12:06 +00:00
|
|
|
- name: run 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:
|
2022-05-27 17:44:37 +00:00
|
|
|
ref:
|
|
|
|
- refs/tags/*
|
2022-05-23 19:12:06 +00:00
|
|
|
event:
|
|
|
|
- cron
|
|
|
|
|
2021-03-15 17:18:03 +00:00
|
|
|
- name: make release 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
|
2021-03-15 17:18:03 +00:00
|
|
|
username:
|
|
|
|
from_secret: docker_username
|
|
|
|
password:
|
|
|
|
from_secret: docker_password
|
|
|
|
when:
|
2022-05-27 17:44:37 +00:00
|
|
|
ref:
|
|
|
|
- refs/tags/*
|
2022-05-24 13:11:20 +00:00
|
|
|
event:
|
|
|
|
- cron
|