Skip to content

Rename Fishjam Cloud to Fishjam (#18) #24

Rename Fishjam Cloud to Fishjam (#18)

Rename Fishjam Cloud to Fishjam (#18) #24

Workflow file for this run

name: Build docs
on:
push:
branches:
- main
workflow_dispatch:
inputs:
code_branch_tag:
description: 'The branch or tag to run the workflow from'
required: true
default: 'main'
jobs:
# Build the documentation and upload the static HTML files as an artifact.
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.inputs.ref }}
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- uses: abatilo/actions-poetry@v2
- run: poetry install
- run: poetry run generate_docs
- run: git fetch origin gh-pages --depth=1
- run: git config user.name ci-bot
- run: git config user.email ci-bot@example.com
- run: poetry run mike deploy latest
- run: git checkout gh-pages
# Push changes to gh-pages branch
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages