Skip to content

bump phenex version #71

bump phenex version

bump phenex version #71

Workflow file for this run

name: Deploy Documentation
permissions:
contents: read
pages: write
id-token: write
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.12" # install the python version needed
- name: install deps
run: |
apt-get update && apt-get install -y wget gcc
pip install -r requirements.txt
- name: build docs
run: |
PYTHONPATH=. mkdocs build
- name: Upload static files as artifact
id: deployment
uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
with:
path: site/
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4