Skip to content

add a new feature to allow user config global_trend_sigma (#95) #66

add a new feature to allow user config global_trend_sigma (#95)

add a new feature to allow user config global_trend_sigma (#95) #66

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: github pages
on:
# Runs on pushes targeting the default branch
push:
branches:
- main
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Requirements
run: |
pip install -r requirements-docs.txt
- name: Build site
run: mkdocs build --site-dir _site
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: '_site/'
# Single deploy job since we're just deploying
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@v1