Skip to content

bump x.y.z version to even y prior to creation of RELEASE_3_20 branch #66

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

bump x.y.z version to even y prior to creation of RELEASE_3_20 branch #66

Workflow file for this run

on:
push
name: rebuild
jobs:
rebuild:
name: "Rebuilding dependency list."
runs-on: ubuntu-latest
container: bioconductor/bioconductor_docker:devel
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
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="Rtsne")
rebook::configureBook(prefix="Multi-sample")
shell: Rscript {0}
- name: Committing to master
run: |
git config --global --add safe.directory /__w/OSCA/OSCA.multisample
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Rebuilding sundries." || true
git push