Skip to content

bump x.y.z version to even y prior to creation of RELEASE_3_19 branch #77

bump x.y.z version to even y prior to creation of RELEASE_3_19 branch

bump x.y.z version to even y prior to creation of RELEASE_3_19 branch #77

Workflow file for this run

on:
push
name: rebuild
jobs:
rebuild:
name: "Rebuilding dependency list."
runs-on: ubuntu-latest
container: bioconductor/bioconductor_docker:devel
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Update DESCRIPTION and Makefile
run: |
BiocManager::install('LTLA/rebook')
rebook::updateDependencies("inst/book", path='DESCRIPTION', extra=c("Rtsne"))
rebook::configureBook(prefix="Advanced", redirect='redirect.txt')
shell: Rscript {0}
- name: Committing to master
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Rebuilding sundries." || true
git push