Skip to content

bump x.y.z version to odd y following creation of RELEASE_3_20 branch #37

bump x.y.z version to odd y following creation of RELEASE_3_20 branch

bump x.y.z version to odd y following creation of RELEASE_3_20 branch #37

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')
rebook::configureBook(prefix="Workflow", redirect='redirect.txt')
shell: Rscript {0}
- name: Committing to master
run: |
git config --global --add safe.directory /__w/OSCA/OSCA.workflows
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add .
git commit -m "Rebuilding sundries." || true
git push