Skip to content

Commit

Permalink
Merge pull request #18 from subugoe/jul_24
Browse files Browse the repository at this point in the history
Try new preview workflow
  • Loading branch information
njahn82 authored Jul 16, 2024
2 parents ef415ef + 6029e10 commit 557840d
Show file tree
Hide file tree
Showing 109 changed files with 290,081 additions and 8 deletions.
37 changes: 31 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,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 +27,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 +50,33 @@ 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: Commit rendered dashboard documents
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 docs/
git commit --allow-empty -m "Auto-update of the HOAD on $DATE" -a
git push origin ${{ github.head_ref }}
- name: Productive - Render and Publish
if: github.event_name == 'push'
- name: Publish to GitHub Pages
if: env.result == '1' && github.event.pull_request.merged == 'true'
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
render: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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
2 changes: 1 addition & 1 deletion create_qmd.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ ta_dir_create(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

Expand Down
Loading

0 comments on commit 557840d

Please sign in to comment.