mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +00:00
45 lines
792 B
YAML
45 lines
792 B
YAML
---
|
|
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 --remote
|
|
|
|
- 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
|
|
tags:
|
|
- latest
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
when:
|
|
ref:
|
|
- refs/tags/*
|