-
Notifications
You must be signed in to change notification settings - Fork 59
63 lines (49 loc) · 2.05 KB
/
scheduled-manual-main.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
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * *'
name: Rerender-released-Book
jobs:
bookdown:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
name: Render-Book
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Checkout latest release tag
run: |
LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`)
git checkout $LATEST_TAG
- uses: r-lib/actions/setup-r@v2
- uses: quarto-dev/quarto-actions/setup@v2
with:
version: pre-release
- uses: r-lib/actions/setup-pandoc@v2
- uses: r-lib/actions/setup-tinytex@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: local::.
- name: Render book
run: Rscript -e 'babelquarto::render_book()'
env: # Set the secret as an input
AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }}
ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }}
- name: Move English files
run: Rscript -e 'file.copy(from = "_book/rOpenSci-Packages--Development,-Maintenance,-and-Peer-Review.pdf", to = "_book/ropensci-dev-guide.pdf")' -e 'purrr::walk(list.files("images", full.names = TRUE), file.copy, to = "_book/images")'
- name: Move Spanish files
run: Rscript -e 'file.copy(from = "_book/es/rOpenSci-Packages--Development,-Maintenance,-and-Peer-Review.pdf", to = "_book/es/ropensci-dev-guide.pdf")' -e 'purrr::walk(list.files("images", full.names = TRUE), file.copy, to = "_book/es/images")'
- name: git config
run: |
git config --global user.email "[email protected]"
git config --global user.name "gh-pages committer"
- name: Commit results
run: |
cp ghpagescname _book/CNAME
cd _book
git init
git add .
git commit -m 'update book'
git push https://${{github.actor}}:${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git HEAD:gh-pages --force