Files
Lumina-MSK/.gitea/workflows/test_secret.yaml
DatTT127 2635ddfe8f
Some checks failed
Test Gitea Secrets / deploy-to-modal (push) Failing after 32s
update the test
2026-07-16 23:59:43 +07:00

21 lines
582 B
YAML

name: Test Gitea Secrets
on: [push]
jobs:
deploy-to-modal:
runs-on: ubuntu-latest
container:
image: gitea-modal-runner:latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Deploy worker pipeline to Modal
run: |
cd workspace/sprint_1_2/CODEBASE/deps/implementation
modal deploy test_worker.py
env:
# These are injected by Gitea Actions from the Repository Secrets
MODAL_TOKEN_ID: ${{ secrets.MODAL_KEY }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_SECRET }}