Skip to content

Merge pull request #86 from flpm/patch-1 #129

Merge pull request #86 from flpm/patch-1

Merge pull request #86 from flpm/patch-1 #129

Workflow file for this run

name: Build and Deploy
on: [push, workflow_dispatch]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: Set up Python 3 🐍
uses: actions/setup-python@v2
with:
python-version: '3.8' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Update PIP ✨
run: |
pip install -U wheel
pip install -U setuptools
python -m pip install -U pip
- name: Install requirements ⚙️
run: python -m pip install -r requirements.txt
- name: Run script 🏃
run: python static.py --with-trans-calc
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
branch: main # The branch the action should deploy to.
folder: docs # The folder the action should deploy.