Skip to content

Deploy to GitHub Pages #9

Deploy to GitHub Pages

Deploy to GitHub Pages #9

Workflow file for this run

name: Deploy to GitHub Pages
on: workflow_dispatch
env:
POETRY_VERSION: "1.6.1"
PYTHON_VERSION: "3.11"
DATALOGGER_VERSION: "0.2.0"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Poetry
run: pipx install poetry==$POETRY_VERSION
- name: Set up Python with Poetry cache
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Install dependencies
run: poetry install --all-extras
- name: Build documentation website to _site
run: poetry run sphinx-build docs _site
- name: Build package
run: poetry build
- name: Create _site/releases/index.html
run: |
mkdir _site/releases
echo '<!DOCTYPE html>
<html>
<body>
<a href="datalogger/">datalogger</a>
</body>
</html>' > _site/releases/index.html
- name: Create _site/releases/datalogger/index.html
run: |
mkdir _site/releases/datalogger
echo '<!DOCTYPE html>
<html>
<body>
<a href="datalogger-${{ env.DATALOGGER_VERSION }}-py3-none-any.whl">
datalogger-${{ env.DATALOGGER_VERSION }}-py3-none-any.whl
</a>
<a href="datalogger-${{ env.DATALOGGER_VERSION }}.tar.gz">datalogger-${{ env.DATALOGGER_VERSION }}.tar.gz</a>
</body>
</html>' > _site/releases/datalogger/index.html
- name: Move package files into _site/releases/datalogger
run: mv dist/* _site/releases/datalogger
- name: Upload site artifact
uses: actions/upload-pages-artifact@v1
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2