Skip to content

Update citation title for teamtomo software #77

Update citation title for teamtomo software

Update citation title for teamtomo software #77

Workflow file for this run

name: build
on:
push:
branches:
- main
schedule:
# Run every Sunday at 4:00 AM UTC
- cron: '0 4 * * 0'
workflow_dispatch: # Allow manual triggering
# This job installs dependencies, builds the site and pushes it to
# the `gh-pages` branch of the same repository.
jobs:
deploy-book:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Build the site
run: |
mkdocs build
env:
GH_API_KEY: ${{ secrets.GITHUB_TOKEN }}
- name: Push built site to GitHub pages branch of repo
uses: peaceiris/actions-gh-pages@v4
with:
publish_dir: ./site
github_token: ${{ secrets.GITHUB_TOKEN }}
cname: teamtomo.org