Skip to content

Commit

Permalink
altdoc workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentarelbundock committed Mar 22, 2024
1 parent ef867ff commit cf34716
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 0 deletions.
54 changes: 54 additions & 0 deletions .github/workflows/altdoc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# 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, master]
pull_request:
branches: [main, master]
release:
types: [published]
workflow_dispatch:

name: altdoc

jobs:
altdoc:
runs-on: ubuntu-latest
# Only restrict concurrency for non-PR jobs
concurrency:
group: altdoc-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
steps:
- uses: actions/checkout@v4

- uses: quarto-dev/quarto-actions/setup@v2

- name: Get Script
run: curl -OLs https://eddelbuettel.github.io/r-ci/run.sh && chmod 0755 run.sh

- name: Bootstrap
run: ./run.sh bootstrap

- name: Dependencies
run: ./run.sh install_all

- name: Build site
run: |
# If parallel = TRUE in render_docs()
# future::plan(future::multicore)
install.packages(".", repos = NULL, type = "source")
install.packages("pkgload")
pkgload::load_all()
altdoc::render_docs(parallel = FALSE, freeze = 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
1 change: 1 addition & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ BugReports: https://github.com/vincentarelbundock/countrycode/issues
Depends:
R (>= 2.10)
Suggests:
altdoc,
eurostat,
testthat,
tibble,
Expand Down

0 comments on commit cf34716

Please sign in to comment.