refactor: Update Hi-C RFC to reflect HiC-Pro usage. #152
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}" |