This repository was archived by the owner on Jan 13, 2026. It is now read-only.
Bumping lambda runtimes (#452) #1300
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: CI Controller | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'dev' | |
| pull_request: | |
| branches: | |
| - '**' | |
| jobs: | |
| run-tests: | |
| uses: ./.github/workflows/test-runner.yml | |
| native-build-check: | |
| uses: ./.github/workflows/native-build-check.yml | |
| # This job ONLY runs for pushes to 'dev' and 'main' | |
| deploy-server: | |
| needs: run-tests | |
| if: github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'dev') | |
| uses: ./.github/workflows/deploy-server.yml | |
| with: | |
| # Dynamically set the environment based on the branch | |
| environment: ${{ github.ref_name == 'main' && 'production' || 'develop' }} | |
| secrets: inherit |