Update data gg #166
Workflow file for this run
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-ignore: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
branches-ignore: | |
- 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@v2 | |
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 | |
- name: Update branch | |
if: env.result == '1' | |
run: | | |
git pull --rebase origin ${{ github.head_ref }} | |
- name: Push changes | |
if: env.result == '1' | |
uses: ad-m/github-push-action@master | |
with: | |
branch: ${{ github.head_ref }} # Push changes back to the originating branch | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- 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 |