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-04 15:32:44 +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
|
|
|
|
|
|
|
|
- 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:
|
|
|
|
ref:
|
|
|
|
- refs/tags/*
|