A simple, universal public Statuspage.
https://status.sp-codes.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
2.0 KiB
130 lines
2.0 KiB
kind: pipeline |
|
type: docker |
|
name: linux-amd64 |
|
|
|
platform: |
|
os: linux |
|
arch: amd64 |
|
|
|
steps: |
|
- name: build |
|
image: node:alpine |
|
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 |
|
|
|
trigger: |
|
branch: |
|
- master |
|
event: |
|
- push |
|
|
|
--- |
|
kind: pipeline |
|
type: docker |
|
name: linux-arm64 |
|
|
|
platform: |
|
os: linux |
|
arch: arm64 |
|
|
|
steps: |
|
- name: build |
|
image: node:alpine |
|
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 |
|
when: |
|
branch: |
|
- master |
|
event: |
|
- push |
|
|
|
--- |
|
kind: pipeline |
|
type: docker |
|
name: linux-arm |
|
|
|
platform: |
|
os: linux |
|
arch: arm |
|
|
|
steps: |
|
- name: build |
|
image: node:alpine |
|
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: |
|
- master |
|
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: |
|
- master |
|
event: |
|
- push
|
|
|