-
Notifications
You must be signed in to change notification settings - Fork 0
93 lines (79 loc) · 2.76 KB
/
quarto_gh_pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
on:
push:
branches: [ main ]
pull_request:
types:
- opened
- reopened
- synchronize
- closed
name: Render and deploy to Netlify and VirusBank
jobs:
build-deploy:
runs-on: ubuntu-latest
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
NETLIFY_SITE_ID: 284ddce0-61dd-40b7-ab79-8b5ac77ed457
steps:
- uses: actions/checkout@v3
- name: Assemble alpha/toolbox.json
uses: mikefarah/yq@master
with:
cmd: yq -M -o=json src/toolbox.yaml > toolbox/toolbox.json
- uses: r-lib/actions/setup-r@v2
with:
r-version: "4.2"
use-public-rspm: true
- name: Install rmarkdown
run: |
Rscript -e 'install.packages("rmarkdown")'
- name: Install Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
tinytex: true
- name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2
with:
to: html
- name: Deploy to Netlify 🚀
uses: data-intuitive/netlify-deploy-site@v1
if: github.event_name != 'pull_request'
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
site: ${{ env.NETLIFY_SITE_ID }}
dir: '_site'
prod: true
message: 'Deploy production ${{ github.ref }}'
- name: Deploy preview
id: deploy_preview
if: github.event_name == 'pull_request'
uses: data-intuitive/netlify-deploy-site@v1
with:
auth: ${{ secrets.NETLIFY_AUTH_TOKEN }}
site: ${{ env.NETLIFY_SITE_ID }}
dir: '_site'
alias: "${{ env.BRANCH_NAME }}"
message: 'Deploy production ${{ github.ref }}'
- name: Deploy preview to VirusBank
id: deploy_virusbank
if: github.event_name == 'pull_request'
uses: SamKirkland/[email protected]
with:
server: ftp.virusbankplatformorg.webhosting.be
username: floor@virusbankplatformorg
password: ${{ secrets.FTP_AUTH_SECRET }}
local-dir: './_site/'
log-level: standard
# dangerous-clean-slate: true
- uses: thollander/actions-comment-pull-request@v2
if: github.event_name == 'pull_request'
with:
message: |
[![Deploy: success](https://img.shields.io/badge/Deploy-success-success)](${{ steps.deploy_preview.outputs.deploy-url }})
comment_tag: deploy_status
- uses: thollander/actions-comment-pull-request@v2
if: github.event_name == 'pull_request' && failure()
with:
message: |
[![Deploy: failure](https://img.shields.io/badge/Deploy-failure-critical)]${{ steps.deploy_preview.outputs.logs }})
comment_tag: deploy_status