Feature/each group should have the possibility to write custom email templates #1408
Workflow file for this run
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: Build and Deploy to Dev | |
| on: | |
| pull_request: | |
| push: | |
| branches: [develop, main] | |
| jobs: | |
| run-tests: | |
| uses: ./.github/workflows/run_tests.yml | |
| build-dev-container: | |
| uses: ./.github/workflows/build_docker.yml | |
| secrets: inherit | |
| deploy-dev-container: | |
| needs: | |
| - run-tests | |
| - build-dev-container | |
| uses: ./.github/workflows/deploy_docker.yml | |
| secrets: inherit | |
| with: | |
| environment: Dev | |
| server_image_tag: "${{ needs.build-dev-container.outputs.server_image_tag }}" | |
| client_image_tag: "${{ needs.build-dev-container.outputs.client_image_tag }}" |