Skip to content

Merge pull request #24 from OriginalByteMe/12-be-create-annotated-ima… #8

Merge pull request #24 from OriginalByteMe/12-be-create-annotated-ima…

Merge pull request #24 from OriginalByteMe/12-be-create-annotated-ima… #8

Workflow file for this run

name: CI/CD
on:
push:
branches:
- main
- develop
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: Set environment
id: vars
run: |
if [[ "${{ github.ref }}" == "refs/heads/main" ]]; then
echo "::set-output name=environment::main"
else
echo "::set-output name=environment::dev"
fi
- name: Deploy cutout generator job
run: |
modal deploy --env=${{ steps.vars.outputs.environment }} app.cutout_handler::cutout_handler_stub
- name: Deploy s3_handler job
run: |
modal deploy --env=${{ steps.vars.outputs.environment }} app.s3_handler.app