This repository has been archived on 2023-12-07. You can view files and clone it, but cannot push or open issues or pull requests.
universal-statuspage/.drone.yml

132 lines
2.4 KiB
YAML
Raw Normal View History

2020-05-06 15:54:32 +00:00
kind: pipeline
type: docker
name: linux-amd64
platform:
os: linux
arch: amd64
2020-05-06 15:54:32 +00:00
steps:
- name: build
2021-08-12 19:02:04 +00:00
image: node:lts-buster@sha256:df92d3b97dde1ebe73f97353c6f5b10a416895580c79176bfb7f80da132aac96
2020-05-06 15:54:32 +00:00
commands:
- npm install
- npm run build:ssr
- name: docker
image: plugins/docker
settings:
auto_tag: true
auto_tag_suffix: linux-amd64
repo: samuelph/universal-statuspage
2021-06-24 17:10:58 +00:00
build_args:
- ARCH=amd64
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
2021-01-25 22:19:56 +00:00
when:
branch:
- main
event:
- push
---
kind: pipeline
type: docker
2020-11-27 21:47:43 +00:00
name: linux-arm64
2020-11-27 18:03:08 +00:00
platform:
os: linux
arch: arm64
steps:
- name: build
2021-07-31 04:02:43 +00:00
image: arm64v8/node:lts-buster@sha256:50c3e1bb740a5d2fc54287b0b648191878a06dd0d0f91d0d7c9c2f06fb908281
2020-11-27 18:03:08 +00:00
commands:
- npm install
- npm run build:ssr
- name: docker
image: plugins/docker
settings:
auto_tag: true
auto_tag_suffix: linux-arm64
repo: samuelph/universal-statuspage
2021-06-24 17:10:58 +00:00
build_args:
- ARCH=amd64
2020-11-27 18:03:08 +00:00
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
2021-01-25 22:08:46 +00:00
trigger:
branch:
2021-01-25 22:19:56 +00:00
- main
2021-01-25 22:08:46 +00:00
event:
- push
2020-11-27 18:03:08 +00:00
2021-03-27 21:21:11 +00:00
# disable temporarily
#---
#kind: pipeline
#type: docker
#name: linux-arm
#
#platform:
# os: linux
# arch: arm
#
#steps:
# - name: build
2021-06-24 21:29:17 +00:00
# image: arm32v7/node:lts-buster@sha256:e93d480d761345d85d283fba41585c6906c28d1670fa7f9581ead8aadf56e583
2021-03-27 21:21:11 +00:00
# commands:
# - npm install
# - npm run build:ssr
# - name: docker
# image: plugins/docker
# settings:
# auto_tag: true
# auto_tag_suffix: linux-arm
# repo: samuelph/universal-statuspage
# username:
# from_secret: USERNAME
# password:
# from_secret: PASSWORD
#
#trigger:
# branch:
# - main
# event:
# - push
---
kind: pipeline
type: docker
name: manifest
steps:
- name: publish
image: plugins/manifest
settings:
auto_tag: true
ignore_missing: true
target: samuelph/universal-statuspage
template: samuelph/universal-statuspage:OS-ARCH
platforms:
- linux/amd64
2020-11-27 18:03:08 +00:00
- linux/arm64
2021-06-24 17:10:58 +00:00
# - linux/arm
2020-05-06 15:54:32 +00:00
username:
from_secret: USERNAME
password:
from_secret: PASSWORD
depends_on:
- linux-amd64
2020-11-27 18:03:08 +00:00
- linux-arm64
2021-03-27 21:21:11 +00:00
# - linux-arm
trigger:
branch:
2021-01-25 22:19:56 +00:00
- main
2020-07-05 18:50:06 +00:00
event:
- push