Add mini academy, summer schools and professional activities views #1908
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: Deploy | |
| on: | |
| workflow_dispatch: | |
| workflow_run: | |
| workflows: [Update, Update courses, Update catalog] | |
| types: | |
| - completed | |
| push: | |
| branches: [ master ] | |
| paths-ignore: | |
| - README.md | |
| - doc/** | |
| concurrency: deploy | |
| jobs: | |
| #infra: | |
| # uses: UM-LPM/server/.github/workflows/deploy-infra.yml@master | |
| # secrets: inherit | |
| bastion: | |
| uses: UM-LPM/server/.github/workflows/deploy-machine.yml@master | |
| with: | |
| machine: "bastion.l" | |
| secrets: inherit | |
| # needs: infra | |
| machines: | |
| strategy: | |
| matrix: | |
| machine: | |
| - "minimal.l" | |
| - "gateway.l" | |
| - "builder.l" | |
| - "runner1.l" | |
| - "proxy.l" | |
| - "collab.l" | |
| - "collab-dev.l" | |
| - "collab-test.l" | |
| - "collab-pora.l" | |
| - "collab-rri.l" | |
| - "collab-vr.l" | |
| - "collab-rsasm.l" | |
| - "collab-catalog-dev.l" | |
| - "login.l" | |
| - "login-dev.l" | |
| - "gc.l" | |
| - "gc-dev.l" | |
| - "catalog.l" | |
| - "catalog-dev.l" | |
| #- "catalog-view.l" | |
| - "catalog-manage.l" | |
| - "catalog-manage-dev.l" | |
| - "catalog-summer-schools.l" | |
| - "catalog-mini-academy.l" | |
| - "catalog-manage-um.l" | |
| - "catalog-view-um.l" | |
| - "catalog-view-mini-academy.l" | |
| - "catalog-view-summer-schools.l" | |
| - "catalog-view-professional-activities.l" | |
| - "catalog-professional-activities.l" | |
| - "grades.l" | |
| - "grades-dev.l" | |
| - "student-mqtt.l" | |
| - "bioma.l" | |
| - "ps.l" | |
| - "feriusa.l" | |
| - "usatour.l" | |
| - "ears.l" | |
| - "prometheus.l" | |
| - "school-project.l" | |
| fail-fast: false | |
| needs: bastion | |
| uses: UM-LPM/server/.github/workflows/deploy-machine.yml@master | |
| with: | |
| machine: ${{matrix.machine}} | |
| secrets: inherit | |