Skip to content

updated requirements #30

updated requirements

updated requirements #30

Workflow file for this run

# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Deploy Streamlit App to Vercel
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Specify the Python version you are using
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Deploy to Vercel
env:
VERCEL_PROJECT_ID: <prj_RqRsuzUM5GZiKTFtNKVbLQLAKsDy>
VERCEL_TOKEN: <fmm37xOekNWGLWsE9Xs7Apzm>
run: |
npx vercel --prod