Skip to content

Add details on msgen situation and RNA-Seq v2 #142

Add details on msgen situation and RNA-Seq v2

Add details on msgen situation and RNA-Seq v2 #142

Workflow file for this run

name: Continuous Deployment
on:
push:
branches:
- main
- rfcs/*
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
# (1) Check out the repository
- uses: actions/checkout@v3
# (2) Install `mdbook`
- name: Install Dependencies
uses: peaceiris/actions-mdbook@v1
with:
mdbook-version: "latest"
# (3) Build the documentation
- run: bash bin/ci-build.sh
# (4) Deploy the documentation to GitHub pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./book
user_name: "St. Jude Cloud"
user_email: support@stjude.cloud
commit_message: "Deployed from ${{ github.event.head_commit.message }}"