Skip to content

Two posts about RSE collaboration and RSE work rotations #196

Two posts about RSE collaboration and RSE work rotations

Two posts about RSE collaboration and RSE work rotations #196

Workflow file for this run

name: gh-pages
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
[push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: sphinx-doc/github-problem-matcher@master
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Dependencies
run: pip install -r requirements.txt
- name: Build
run: |
make dirhtml
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build/dirhtml/
force_orphan: true