-
Notifications
You must be signed in to change notification settings - Fork 1
84 lines (73 loc) · 2.44 KB
/
update-data.yaml
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
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: main
pull_request:
branches: main
name: cicd
jobs:
CICD:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Check commit message
id: check_commit_message
run: |
COMMIT_MSG=$(git log -1 --pretty=%B)
if [[ "$COMMIT_MSG" != "Update data"* ]]; then
echo "Commit message does not start with 'Update data'."
echo "result=0" >> $GITHUB_ENV
else
echo "result=1" >> $GITHUB_ENV
fi
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::rcmdcheck
any::pkgdown
local::.
needs: |
check
website
- uses: r-lib/actions/check-r-package@v2
- name: Update data
if: env.result == '1'
env:
HOADDATA_PASSWORD: ${{ secrets.HOADDATA_PASSWORD }}
run: |
source("data-raw/jct_001_get_cr_data.R")
shell: Rscript {0}
- name: Check package after data update
if: env.result == '1'
uses: r-lib/actions/check-r-package@v2
- name: Commit files
if: env.result == '1'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
DATE=$(date +'%Y-%m-%d %H:%M:%S')
git add data/
git commit --allow-empty -m "Auto-update of the data package on $DATE" -a
git push origin ${{ github.head_ref }}
- name: Build site
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}
- name: Deploy to GitHub pages 🚀
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }}
uses: JamesIves/[email protected]
with:
clean: false
branch: gh-pages
folder: docs