Skip to content

Update CRAN submission date and SHA for version 0.1.0 #15

Update CRAN submission date and SHA for version 0.1.0

Update CRAN submission date and SHA for version 0.1.0 #15

Workflow file for this run

# 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:
release:
types: [published, prereleased]
workflow_dispatch:
name: pkgdown.yaml
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-pandoc@v2
- uses: quarto-dev/quarto-actions/setup@v2
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::altdoc, local::.
needs: website
- name: Build site with altdoc
run: altdoc::render_docs(verbose = TRUE)
shell: Rscript {0}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs
deploy:
if: github.event_name != 'pull_request'
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4