Skip to content

๐ŸŽ„ refactor!: refactor code, remove unused libraries, update HTML struโ€ฆ #137

๐ŸŽ„ refactor!: refactor code, remove unused libraries, update HTML struโ€ฆ

๐ŸŽ„ refactor!: refactor code, remove unused libraries, update HTML struโ€ฆ #137

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.