130 lines
2.3 KiB
YAML
130 lines
2.3 KiB
YAML
kind: pipeline
|
|
type: docker
|
|
name: linux-amd64
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build
|
|
image: amd64/node:12.21.0-buster@sha256:a0d075cfb19eae5353815d8be4573196c1cb118dcccb21634006ec18a7754d84
|
|
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
|
|
username:
|
|
from_secret: USERNAME
|
|
password:
|
|
from_secret: PASSWORD
|
|
when:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: linux-arm64
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
- name: build
|
|
image: arm64v8/node:12.21.0-buster@sha256:d96d100df72d0f862f5338414489e5847cda289807fb069064a5c57ee5a941c5
|
|
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
|
|
username:
|
|
from_secret: USERNAME
|
|
password:
|
|
from_secret: PASSWORD
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: linux-arm
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm
|
|
|
|
steps:
|
|
- name: build
|
|
image: arm32v7/node:12.21.0-buster@sha256:e93d480d761345d85d283fba41585c6906c28d1670fa7f9581ead8aadf56e583
|
|
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
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
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
|
|
- linux/arm64
|
|
- linux/arm
|
|
username:
|
|
from_secret: USERNAME
|
|
password:
|
|
from_secret: PASSWORD
|
|
|
|
depends_on:
|
|
- linux-amd64
|
|
- linux-arm64
|
|
- linux-arm
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
- push
|