This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
maatma-videos/.drone.yml
nemunaire bb9e5a1e3f
All checks were successful
continuous-integration/drone/push Build is passing
drone: Use linux-arm64 image as this is an arm64 pipeline
2023-02-13 10:08:01 +00:00

44 lines
719 B
YAML

---
kind: pipeline
type: docker
name: default
platform:
os: linux
arch: arm64
steps:
- name: build front
image: node:19-alpine3.15
commands:
- apk --no-cache add python2 build-base
- npm install --network-timeout=100000
- npm run build
- name: deploy
image: appleboy/drone-scp:linux-arm64
settings:
tar_tmp_path: /tmp/
host: adlin.nemunai.re
target: /var/www/nemunai.re/adlin/videos/
source: build/*
strip_components: 1
username:
from_secret: ssh_username
key:
from_secret: deploy_key
port:
from_secret: ssh_port
when:
branch:
- master
event:
exclude:
- pull_request
trigger:
event:
- cron
- push
- tag