-
Notifications
You must be signed in to change notification settings - Fork 3
99 lines (82 loc) · 2.45 KB
/
render-qmd.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
94
95
96
97
98
99
name: Rintro2HTML
run-name: ${{ github.actor }} is testing
on:
push:
branches: ["thomas"]
permissions:
contents: read
pages: write
id-token: write
defaults:
run:
shell: bash -l {0}
jobs:
build:
name: Build Pages
runs-on: ubuntu-latest
# container: node:latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@main
with:
environment-file: configs/conda.yml
cache-environment: true
cache-downloads: true
environment-name: Rintro
- name: Activate Environment
run: micromamba activate Rintro
- name: Check Installation
run: |
echo "after conda activate Rintro: PATH=$PATH;"
which R || true
R --version || true
which micromamba || true
micromamba --version || true
which quarto || true
quarto --version || true
- name: Installation non-conda packages
run: |
Rscript -e 'install.packages(c("KernSmooth"), repos="https://cloud.r-project.org")'
Rscript -e '.libPaths()' || true
- name: Render quarto
#continue-on-error: true # only for error tracking
run: |
quarto render .
- name: Show all files in docs
run: ls -Ral docs
- name: Show file contents
run: |
cat docs/index.html
- name: Upload
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
# - name: Deploy to GitHub Pages
# uses: peaceiris/actions-gh-pages@v3
# if: ${{ !env.ACT }}
# with:
# github_token: ${{ secrets.GITHUB_TOKEN }}
# publish_dir: |
# ./docs
deploy:
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
# the following does not work; micromamba env and installs seem not to be recognized
# see also: https://github.com/quarto-dev/quarto-actions/issues/47
# - name: Set up Quarto
# uses: quarto-dev/quarto-actions/setup@v2
# - name: Render and Publish
# uses: quarto-dev/quarto-actions/publish@v2
# with:
# target: gh-pages
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}