25 lines
423 B
YAML
25 lines
423 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: updateASSETs
|
|
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
|
|
steps:
|
|
- name: deploy
|
|
image: node:lts-alpine
|
|
environment:
|
|
RIPE_PASSWORD:
|
|
from_secret: ripe_password
|
|
PDB_TOKEN:
|
|
from_secret: pdb_token
|
|
commands:
|
|
- apk add bgpq4 --repository=https://dl-cdn.alpinelinux.org/alpine/edge/testing
|
|
- yarn
|
|
- yarn deploy
|