-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (64 loc) · 1.87 KB
/
update-docs.yaml
File metadata and controls
79 lines (64 loc) · 1.87 KB
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
on:
push:
branches: [main, master]
workflow_dispatch:
name: update-docs
permissions: write-all
# This will cancel running jobs once a new run is triggered
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
update-docs:
runs-on: windows-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v6
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
install-quarto: true
extra-packages: |
local::.
any::rcmdcheck
dieghernan/pkgdev
- name: Install optipng
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install optipng
elif [ "$RUNNER_OS" == "Windows" ]; then
choco install optipng
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install optipng
else
echo "$RUNNER_OS not supported"
exit 1
fi
shell: bash
- name: Run jarl
uses: etiennebacher/setup-jarl@v0.1.1
continue-on-error: true
with:
args: "--version"
- name: Install Air
uses: posit-dev/setup-air@v1
- name: Format package
run: air format .
- name: Update docs
run: |
source("data-raw/compress_css.R")
pkgdev::update_docs()
shell: Rscript {0}
- name: Commit results
run: |
git config --local user.name "github-actions[bot]"
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add -A
git commit -m 'Update docs with pkgdev' || echo "No changes to commit"
git push origin || echo "No changes to commit"
- uses: r-lib/actions/check-r-package@v2