washweb-website/.drone.yml

76 lines
1.8 KiB
YAML
Raw Normal View History

2023-06-28 10:28:00 +00:00
---
2023-06-28 10:26:39 +00:00
kind: pipeline
name: deploy to washweb.org
2023-06-28 10:26:39 +00:00
steps:
2023-11-17 13:18:29 +00:00
- name: restore-cache
image: drillster/drone-volume-cache
2023-11-17 13:34:09 +00:00
settings:
restore: true
mount:
- /usr/local/lib/R/site-library
2023-11-17 13:18:29 +00:00
volumes:
2023-11-17 13:20:29 +00:00
- name: cache
path: /cache
2023-11-17 14:32:33 +00:00
- name: lib
path: /usr/local/lib/R/site-library
2023-06-28 10:26:39 +00:00
- name: build quarto site
image: cynkra/quarto-r:1.4.169-4.3.1
commands:
2024-04-02 14:47:17 +00:00
- 'echo "install.packages(\"rmarkdown\")" | r -'
- 'echo "install.packages(\"readr\")" | r -'
2024-04-02 14:55:40 +00:00
- 'echo "install.packages(\"here\")" | r -'
2024-04-02 15:42:43 +00:00
- 'echo "install.packages(\"dplyr\")" | r -'
- 'echo "install.packages(\"knitr\")" | r -'
2024-04-02 16:04:10 +00:00
- 'echo "install.packages(\"stringr\")" | r -'
2023-06-28 10:32:39 +00:00
- quarto render
2023-11-17 14:32:33 +00:00
volumes:
- name: lib
path: /usr/local/lib/R/site-library
2023-11-17 13:18:29 +00:00
- name: deploy to washweb.org
2023-06-28 10:26:39 +00:00
image: git.coopcloud.tech/coop-cloud/docker-cp-deploy:latest
2023-06-28 10:32:39 +00:00
settings:
host: washnote.org
2023-11-17 12:24:30 +00:00
port: 222
2023-11-17 12:40:34 +00:00
service: washweb_org_app
2023-06-28 10:58:50 +00:00
source: .
2023-06-28 10:32:39 +00:00
dest: /usr/share/nginx/html/
2023-06-28 10:58:50 +00:00
chdir: _site
2023-06-28 10:32:39 +00:00
deploy_key:
from_secret: drone_ssh_washnote_org
when:
branch:
- main
2023-11-17 13:18:29 +00:00
- name: deploy to dev.washweb.org
image: git.coopcloud.tech/coop-cloud/docker-cp-deploy:latest
settings:
host: washnote.org
2023-11-17 12:24:30 +00:00
port: 222
2023-11-17 12:40:34 +00:00
service: dev_washweb_org_app
source: .
dest: /usr/share/nginx/html/
chdir: _site
deploy_key:
from_secret: drone_ssh_washnote_org
when:
branch:
- dev
2023-11-17 13:18:29 +00:00
- name: rebuild-cache
image: drillster/drone-volume-cache
2023-11-17 13:34:09 +00:00
settings:
rebuild: true
mount:
- /usr/local/lib/R/site-library
2023-11-17 13:18:29 +00:00
volumes:
2023-11-17 13:20:29 +00:00
- name: cache
path: /cache
2023-11-17 14:32:33 +00:00
- name: lib
path: /usr/local/lib/R/site-library
2023-11-17 13:20:29 +00:00
volumes:
- name: cache
host:
path: /tmp/drone/cache
2023-11-17 14:32:33 +00:00
- name: lib
temp: {}