Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jul 24 #19

Closed
wants to merge 20 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 44 additions & 10 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:

name: build

# you need these permissions to publish to GitHub pages
permissions:
contents: write
pages: write

jobs:
CICD:
runs-on: ubuntu-latest
Expand All @@ -16,8 +21,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0

- name: Provide Fonts
Expand All @@ -26,6 +32,18 @@ jobs:
cp -r fonts/ /usr/share/fonts/Atkinson_Hyperlegible/
fc-cache -fv

- name: Check commit message
id: check_commit_message
run: |
COMMIT_MSG=$(git log -1 --pretty=%B)
echo "Commit_MSG: ${COMMIT_MSG}"
if [[ "$COMMIT_MSG" != "Render HOAD"* ]]; then
echo "Commit message does not start with 'Render HOAD'."
echo "result=0" >> $GITHUB_ENV
else
echo "result=1" >> $GITHUB_ENV
fi

- uses: quarto-dev/quarto-actions/setup@v2
- run: |
quarto --version
Expand All @@ -37,21 +55,37 @@ jobs:
- uses: r-lib/actions/setup-r-dependencies@v2

- name: Create dashboard documents
if: env.result == '1'
run: |
source("create_qmd.R")
shell: Rscript {0}

- name: Staging - Render and Publish
if: github.event_name == 'pull_request'
- name: Preview - Render and Publish
if: env.result == '1'
uses: quarto-dev/quarto-actions/publish@v2
with:
target: netlify
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}

- name: Productive - Render and Publish
if: github.event_name == 'push'
uses: quarto-dev/quarto-actions/publish@v2

- name: Commit rendered dashboard documents
if: env.result == '1'
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add docs/
git commit -m "Auto-update of the HOAD"
git push origin ${{ github.head_ref }}

- name: Create Pull Request for docs folder
id: cpr
uses: peter-evans/create-pull-request@v3
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Updated docs folder"
branch: update-docs-folder
branch-suffix: timestamp
base: gh-pages
title: 'Automatic PR to update docs folder'
body: 'This is an auto-generated PR with the updates to the docs folder.'
labels: 'website, automated pr'

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.Rhistory
.RData
.Ruserdata
docs/
jct/
oam/
/.quarto/
Expand Down
8 changes: 4 additions & 4 deletions create_qmd.R
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ ta_jns <- purrr::pmap_df(list(publisher = my_ta$publisher, collection = my_ta$co
ta_dir_create(unique(ta_jns$dir_name))

# Copy funding note
funding_cp(unique(ta_jns$dir_name))
# funding_cp(unique(ta_jns$dir_name))

# Create templates
purrr::walk(my_ta$publisher, ta_template_create)
# purrr::walk(my_ta$publisher, ta_template_create)

# Move JCT overview

fs::file_copy("_jct_overview.qmd", "index.qmd", overwrite = TRUE)

# OAM overview
fs::file_copy("_oam_overview.qmd", "oam/index.qmd", overwrite = TRUE)
funding_cp("oam/")
#fs::file_copy("_oam_overview.qmd", "oam/index.qmd", overwrite = TRUE)
# funding_cp("oam/")
Loading