Skip to content

fix: minor

fix: minor #2

Workflow file for this run

name: CI/CD
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run Metaflow pipeline
run: |
python food_recommendation.py run
- name: Deploy to Vercel
run: |
npm install -g vercel
vercel --prod --token ${{ secrets.VERCEL_TOKEN }}
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}