Skip to content

revert 91eafea9b4b463fd687a0f595b6a34fe4ff32f8c: xfun 0.51 is on CRAN… #12

revert 91eafea9b4b463fd687a0f595b6a34fe4ff32f8c: xfun 0.51 is on CRAN…

revert 91eafea9b4b463fd687a0f595b6a34fe4ff32f8c: xfun 0.51 is on CRAN… #12

Workflow file for this run

name: Build and deploy package site
on:
push:
branches: ["master"]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
with:
enablement: true
- uses: r-lib/actions/setup-r@HEAD
with:
use-public-rspm: true
- uses: r-lib/actions/setup-r-dependencies@HEAD
- uses: yihui/litedown/site@HEAD
with:
site-dir: 'site'
- uses: actions/upload-pages-artifact@v3
with:
path: 'site'
- id: deployment
uses: actions/deploy-pages@v4