Skip to content

Commit

Permalink
Merge pull request #11 from OriginalByteMe/develop
Browse files Browse the repository at this point in the history
CICD deployment
  • Loading branch information
OriginalByteMe authored Nov 17, 2023
2 parents 8a2ed73 + ed0805c commit 35e9560
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CI/CD

on:
push:
branches:
- main

jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_TOKEN_SECRET }}

steps:
- name: Checkout Repository
uses: actions/checkout@v2

- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.10"

- name: Install Modal
run: |
python -m pip install --upgrade pip
pip install modal
- name: Deploy cutout generator job
run: |
cd app
modal deploy grounded_cutouts.py
- name: Deploy s3_handler job
run: |
cd app/s3_handler
modal deploy app.py

0 comments on commit 35e9560

Please sign in to comment.