Skip to content

RNAs, proteins and their types of structures, lipids, glycerolipids a… #35

RNAs, proteins and their types of structures, lipids, glycerolipids a…

RNAs, proteins and their types of structures, lipids, glycerolipids a… #35

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mkdocs mkdocs-material mkdocs-awesome-pages-plugin mkdocs-macros-plugin pymdown-extensions
- name: Deploy to gh pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: mkdocs gh-deploy --force