Automated commit: Thu 07/23/2026 13:48:48.72 #7461
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Streamlit Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Python | |
| uses: actions/setup-python@v2 | |
| with: | |
| python-version: '3.11.7' # Ensure this matches your desired version for both apps | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| - name: Deploy Strategy Play | |
| run: streamlit run app/Strategy_Play.py & | |
| env: | |
| STREAMLIT_AUTH_TOKEN: ${{ secrets.STREAMLIT_AUTH_TOKEN }} | |
| - name: Deploy CustomizeMyCV | |
| run: streamlit run CustomizeMyCV/app/CustomizeMyCV.py & | |
| env: | |
| STREAMLIT_AUTH_TOKEN: ${{ secrets.STREAMLIT_AUTH_TOKEN }} | |
| - name: Deploy Stock Research Agent | |
| run: streamlit run ZoltarResearch/zoltar_stock_research_agent.py & | |
| env: | |
| STREAMLIT_AUTH_TOKEN: ${{ secrets.STREAMLIT_AUTH_TOKEN }} | |
| - name: Keep alive | |
| run: sleep 1h |