Skip to content

fix multiple 2023 to 2024. #49

fix multiple 2023 to 2024.

fix multiple 2023 to 2024. #49

Workflow file for this run

on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
container: bioconductor/bioconductor_docker:RELEASE_3_18
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Build pkgdown
run: |
PATH=$PATH:$HOME/bin/ Rscript -e 'BiocManager::install(c("knitr", "rmarkdown", "pkgdown")); pkgdown::build_site(".")'
# deploy needs rsync? Seems so.
- name: Install deploy dependencies
run: |
apt-get update
apt-get -y install rsync
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: docs # The folder the action should deploy.