Skip to content

Debugging Rcpp build. #48

Debugging Rcpp build.

Debugging Rcpp build. #48

Workflow file for this run

# https://github.com/Appsilon/shiny.blueprint
name: pkgdown
# on:
# release:
# types: [published]
# workflow_dispatch:
on: push
permissions:
contents: write
jobs:
main:
name: Build and publish website
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install pandoc
uses: r-lib/actions/setup-pandoc@v2
- name: Install R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev libssl-dev
- name: Install R package dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown, github::dereckmezquita/kucoin, local::.
- name: Configure git
run: |
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
- name: Build package
run: |
R CMD build .
R CMD check --no-manual --as-cran *tar.gz
- name: Show check results
if: always()
run: |
find . -name "00check.log" -exec cat {} \;
- name: Show error logs
if: failure()
run: |
find . -name "*.Rout" -exec cat {} \;
find . -name "*.fail" -exec cat {} \;
- name: Deploy to branch
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
shell: Rscript {0}
run: pkgdown::deploy_to_branch(branch = "bot/github-pages")