joinlemmy-site/.drone.yml
Dessalines 0aad0392bc
Inferno rewrite (#31)
* Initial inferno commit.

* Fixing husky

* Fixing submodule

* Removing extra dockerfile lines

* Some cleanup, refactoring into components

* Testing out a drone build.

* Removing lemmy-docs

* Removing gitmodules

* Trying to add again

* Don't init.

* check folder.

* check folder 2.

* Removing lemmy-docs again

* Adding lemmy-docs again

* Adding submodule init.

* Removing ls.

* Trying a first docker deploy.

* Removing arm64 build.

* Upgrading deps, fixing links.
2021-03-15 13:18:03 -04:00

61 lines
1.2 KiB
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
auto_tag: true
auto_tag_suffix: linux-amd64
username:
from_secret: docker_username
password:
from_secret: docker_password
when:
ref:
- refs/tags/*
- name: push to docker manifest
image: plugins/manifest
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
target: "dessalines/joinlemmy-site:${DRONE_TAG}"
template: "dessalines/joinlemmy-site:${DRONE_TAG}-OS-ARCH"
platforms:
- linux/amd64
ignore_missing: true
when:
ref:
- refs/tags/*