Auto-update of the data package #167
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: | |
- uses: actions/checkout@v2 | |
- 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: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
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: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
uses: r-lib/actions/check-r-package@v2 | |
- name: Commit files | |
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git commit --allow-empty -m "Auto-update of the data package" -a | |
- name: Push changes | |
if: ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' }} | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
- name: Build site | |
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | |
shell: Rscript {0} | |
- name: Deploy to GitHub pages 🚀 | |
if: github.event_name != 'pull_request' | |
uses: JamesIves/[email protected] | |
with: | |
clean: false | |
branch: gh-pages | |
folder: docs |