Only show grade to users with student access to the thesis #114
This file contains 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 Prod | |
on: | |
push: | |
branches: [main] | |
jobs: | |
run-tests: | |
uses: ./.github/workflows/run_tests.yml | |
build-prod-container: | |
uses: ./.github/workflows/build_docker.yml | |
secrets: inherit | |
deploy-prod-container: | |
needs: | |
- run-tests | |
- build-prod-container | |
uses: ./.github/workflows/deploy_docker.yml | |
secrets: inherit | |
with: | |
environment: Production | |
server_image_tag: "${{ needs.build-prod-container.outputs.server_image_tag }}" | |
client_image_tag: "${{ needs.build-prod-container.outputs.client_image_tag }}" |