-
Notifications
You must be signed in to change notification settings - Fork 2
43 lines (35 loc) · 908 Bytes
/
quarto.yml
File metadata and controls
43 lines (35 loc) · 908 Bytes
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
on:
push:
branches: [devel]
pull_request:
branches: [devel]
schedule:
- cron: "30 16 * * *" # 2:30pm ET
workflow_dispatch:
name: quarto
jobs:
quarto:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: quarto-dev/quarto-actions/setup@v2
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::remotes
local::.
needs: website
- name: Install package
run: BiocManager::install("Bioconductor/biocUniTools")
shell: Rscript {0}
- name: Render
run: quarto render
- name: Deploy to GitHub pages
uses: JamesIves/github-pages-deploy-action@v4
with:
clean: false
branch: gh-pages
folder: docs