You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,3 +16,18 @@
16
16
-[R Manuals Quarto website](https://rstudio.github.io/r-manuals/) ([source](https://github.com/rstudio/r-manuals), [workflow file](https://github.com/rstudio/r-manuals/blob/main/.github/workflows/build-website.yaml)) This projects uses a workflow to build several books with R and Quarto and organizes them in a website deployed to Github pages.
17
17
18
18
-[Pathology Atlas](https://www.patolojiatlasi.com/EN) ([source](https://github.com/patolojiatlasi/patolojiatlasi.github.io), [workflow file](https://github.com/patolojiatlasi/patolojiatlasi.github.io/blob/main/.github/workflows/Quarto-Render-Bilingual-Book-Push-Other-Repos-GitLab.yml)) This multilingual website is rendered in two versions and deployed using Github Actions.
19
+
20
+
## FAQ
21
+
22
+
* My project uses git lfs storage; how should I adapt the action?
23
+
24
+
If your project uses git lfs storage, you must opt-in to git lfs during `checkout` step.
25
+
26
+
```yaml
27
+
- name: Check out repository
28
+
uses: actions/checkout@v4
29
+
with:
30
+
lfs: true # needed when using lfs for image storage
31
+
```
32
+
33
+
See the [checkout action documentation](https://github.com/actions/checkout) for details.
0 commit comments