From 41d0bd853fac01b6ee9d7992be956d30cc60d0ec Mon Sep 17 00:00:00 2001 From: VisruthSK Date: Fri, 7 Aug 2026 02:31:15 -0700 Subject: [PATCH] Removed GHA vignette--see source; update LICENSE --- LICENSE | 3 +- vignettes/GitHub Action.qmd | 70 ------------------------------------- 2 files changed, 2 insertions(+), 71 deletions(-) delete mode 100644 vignettes/GitHub Action.qmd diff --git a/LICENSE b/LICENSE index 56c1a20..b1cf22b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,2 +1,3 @@ YEAR: 2025 -COPYRIGHT HOLDER: Visruth Srimath Kandali \ No newline at end of file +COPYRIGHT HOLDER: Visruth Srimath Kandali +ORGANIZATION: copyright holder diff --git a/vignettes/GitHub Action.qmd b/vignettes/GitHub Action.qmd deleted file mode 100644 index 61e35c1..0000000 --- a/vignettes/GitHub Action.qmd +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: "GitHub Action" -vignette: > - %\VignetteIndexEntry{Quirks} - %\VignetteEngine{quarto::html} - %\VignetteEncoding{UTF-8} -knitr: - opts_chunk: - collapse: true - comment: '#>' ---- - -Here is a GitHub Action which can be used with the theme to automatically build the site. - -```yaml -# 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: - # build dev site on merged pushes - push: - branches: [main, master] - # build full site on releases - release: - types: [published] - workflow_dispatch: - -name: pkgdown.yaml - -jobs: - pkgdown: - runs-on: ubuntu-latest - # Only restrict concurrency for non-PR jobs - concurrency: - group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} - cancel-in-progress: true - env: - GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} - NOT_CRAN: true - permissions: - contents: write - steps: - - uses: actions/checkout@v6 - - - uses: r-lib/actions/setup-pandoc@v2 - - - uses: r-lib/actions/setup-r@v2 - with: - use-public-rspm: true - extra-repositories: 'https://stan-dev.r-universe.dev' - - - uses: r-lib/actions/setup-r-dependencies@v2 - with: - extra-packages: any::pkgdown, local::., stan-dev/pkgdown-config - - - name: Build site - run: | - pkgdown::build_site_github_pages( - lazy = FALSE, # change to TRUE if runner times out. - run_dont_run = TRUE, - new_process = TRUE - ) - shell: Rscript {0} - - - name: Deploy to GitHub pages 🚀 - uses: JamesIves/github-pages-deploy-action@v4 - with: - clean: false - branch: gh-pages - folder: docs -```