Skip to content

add units to oligos in barcode sampling #6

add units to oligos in barcode sampling

add units to oligos in barcode sampling #6

Workflow file for this run

name: GitHub Pages
on:
push:
branches: [ main ]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout
uses: actions/checkout@v4
# setup nix
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Setup Mkdocs
run: nix develop --command make bootstrap
- name: Build Docs
run: nix develop --command make docs.build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/site
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4