Skip to content

Uodated workflows

Uodated workflows #1

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master # Adjust based on your branch name
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build and deploy
run: |
python deploy.py # Adjust based on your deployment setup