maverick / .github /workflows /pipeline.yml
Varde001's picture
Sync fixed deployment artifacts (corrected f-strings and Dockerfile)
08bbac1 verified
raw
history blame contribute delete
486 Bytes
name: MLOps Sales Forecasting Pipeline
on:
push:
branches: [main]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r master/requirements.txt
- name: Deploy to HF
env:
HF_TOKEN: ${{ secrets.HF_TOKEN }}
run: echo 'Automated deployment logic initialized.'