simplify sed, fix seqkit, other adjustments; fix #35 #4
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
on: | |
push: | |
branches: | |
- main | |
- master | |
name: Render & Publish Site | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
version: 1.3.450 | |
- name: Render Site | |
run: | | |
quarto render | |
- name: No Jekyll | |
run: | | |
touch _site/.nojekyll | |
- name: Publish | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: _site | |
single-commit: true |