digitale-online-offline-reg.../.drone.yml

63 lines
1002 B
YAML
Raw Normal View History

2022-11-22 20:33:04 +01:00
---
kind: pipeline
type: docker
2022-11-22 20:55:53 +01:00
name: compliance
2022-11-22 20:33:04 +01:00
trigger:
branch:
- main
event:
- push
- pull_request
steps:
- name: lint
2024-04-16 21:17:27 +02:00
image: node:20.12.2
2022-11-22 20:33:04 +01:00
commands:
- npm install
- npm run lint
- name: build
2024-04-16 21:17:27 +02:00
image: node:20.12.2
2024-04-16 21:21:19 +02:00
environment:
NODE_OPTIONS: '--openssl-legacy-provider'
2022-11-22 20:33:04 +01:00
commands:
- npm run build
---
kind: pipeline
type: docker
name: deploy
trigger:
branch:
- main
event:
- push
2022-11-22 20:55:53 +01:00
depends_on:
- compliance
2022-11-22 20:33:04 +01:00
steps:
- name: build
2024-04-16 21:17:27 +02:00
image: node:20.12.2
2024-04-16 21:21:19 +02:00
environment:
NODE_OPTIONS: '--openssl-legacy-provider'
2022-11-22 20:33:04 +01:00
commands:
- npm install
- npm run build
2022-11-22 20:50:12 +01:00
- name: deploy
image: drillster/drone-rsync
settings:
hosts: [ "www.wtf-eg.net" ]
user: onboarding
key:
from_secret: SSH_KEY
2022-11-22 20:55:53 +01:00
source: ./dist/
2022-11-22 20:50:12 +01:00
target: /srv/www/onboarding.wtf-eg.de/
recursive: true
2022-11-22 20:33:04 +01:00
---
kind: signature
2024-04-16 21:21:19 +02:00
hmac: 6165a4064c19ccc6d2871c8d18859d5014a3f3c9892d70d27acbc78cfa253e54
2022-11-22 20:33:04 +01:00
...