Compare commits
No commits in common. "e02ce834d84c9ff8ead1625803f96de8ac6d2d94" and "e27c19bc6fe0f57f19947d53b37dc03709e60bcc" have entirely different histories.
e02ce834d8
...
e27c19bc6f
1 changed files with 37 additions and 34 deletions
71
.drone.yml
71
.drone.yml
|
@ -60,44 +60,47 @@ trigger:
|
||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
|
|
||||||
# disable temporarily
|
---
|
||||||
#---
|
kind: pipeline
|
||||||
#kind: pipeline
|
type: docker
|
||||||
#type: docker
|
name: linux-arm
|
||||||
#name: linux-arm
|
|
||||||
#
|
platform:
|
||||||
#platform:
|
os: linux
|
||||||
# os: linux
|
arch: arm
|
||||||
# arch: arm
|
|
||||||
#
|
steps:
|
||||||
#steps:
|
- name: build
|
||||||
# - name: build
|
image: arm32v7/node:12.21.0-buster@sha256:e93d480d761345d85d283fba41585c6906c28d1670fa7f9581ead8aadf56e583
|
||||||
# image: arm32v7/node:12.21.0-buster@sha256:e93d480d761345d85d283fba41585c6906c28d1670fa7f9581ead8aadf56e583
|
commands:
|
||||||
# commands:
|
- npm install
|
||||||
# - npm install
|
- npm run build:ssr
|
||||||
# - npm run build:ssr
|
- name: docker
|
||||||
# - name: docker
|
image: plugins/docker
|
||||||
# image: plugins/docker
|
settings:
|
||||||
# settings:
|
auto_tag: true
|
||||||
# auto_tag: true
|
auto_tag_suffix: linux-arm
|
||||||
# auto_tag_suffix: linux-arm
|
repo: samuelph/universal-statuspage
|
||||||
# repo: samuelph/universal-statuspage
|
username:
|
||||||
# username:
|
from_secret: USERNAME
|
||||||
# from_secret: USERNAME
|
password:
|
||||||
# password:
|
from_secret: PASSWORD
|
||||||
# from_secret: PASSWORD
|
|
||||||
#
|
trigger:
|
||||||
#trigger:
|
branch:
|
||||||
# branch:
|
- main
|
||||||
# - main
|
event:
|
||||||
# event:
|
- push
|
||||||
# - push
|
|
||||||
|
|
||||||
---
|
---
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: docker
|
type: docker
|
||||||
name: manifest
|
name: manifest
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: publish
|
- name: publish
|
||||||
image: plugins/manifest
|
image: plugins/manifest
|
||||||
|
@ -109,7 +112,7 @@ steps:
|
||||||
platforms:
|
platforms:
|
||||||
- linux/amd64
|
- linux/amd64
|
||||||
- linux/arm64
|
- linux/arm64
|
||||||
# - linux/arm
|
- linux/arm
|
||||||
username:
|
username:
|
||||||
from_secret: USERNAME
|
from_secret: USERNAME
|
||||||
password:
|
password:
|
||||||
|
@ -118,7 +121,7 @@ steps:
|
||||||
depends_on:
|
depends_on:
|
||||||
- linux-amd64
|
- linux-amd64
|
||||||
- linux-arm64
|
- linux-arm64
|
||||||
# - linux-arm
|
- linux-arm
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
branch:
|
branch:
|
||||||
|
|
Reference in a new issue