Files
Lumina-MSK/.gitea/workflows/test_secret.yaml
DatTT127 f67fb7a135
Some checks failed
Test Gitea Secrets / print-secret (push) Failing after 3s
update test_secret.yaml
2026-07-16 22:54:32 +07:00

21 lines
633 B
YAML

name: Test Gitea Secrets
on: [push]
jobs:
print-secret:
runs-on: ubuntu-latest
container:
image: runner_setup-gitea_runner:latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Test modal worker pipeline
# All shell commands must be in the 'run' block
run: |
ls -d workspace/sprint_1_2/CODEBASE/deps/implementation
cd workspace/sprint_1_2/CODEBASE/deps/implementation
modal deploy test_worker.py
env:
MODAL_TOKEN_ID: ${{ secrets.MODAL_TOKEN_ID }}
MODAL_TOKEN_SECRET: ${{ secrets.MODAL_TOKEN_SECRET }}