update the triton modal trigger
Some checks failed
Test Gitea Secrets / deploy-to-modal (push) Successful in 22s
Triton Modal Trigger / deploy-to-modal (push) Failing after 8s

This commit is contained in:
DatTT127
2026-07-17 13:17:02 +07:00
parent 06197447f7
commit 900e2bb68b

View File

@@ -0,0 +1,26 @@
# What is the purpose of this workflows
# for a modal GPU instance that hosting the CV model's on Nvidia Triton
name: Triton Modal Trigger
on: [push]
jobs:
deploy-to-modal:
runs-on: ubuntu-latest
container:
image: gitea-modal-runner:latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
sparse-checkout: |
workspace/sprint_1_2/CODEBASE/infra/implementation/triton_run
- name: Deploy Triton model to Modal
run: |
echo "Triggering Triton deployment..."
cd workspace/sprint_1_2/CODEBASE/infra/implementation/triton_run
modal deploy triton_server.py
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_KEY }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_SECRET }}