v0.6.3 #13
Workflow file for this run
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: 'Create Release' | |
# This workflow runs when we create a release. It uses a custom reusable action to | |
# build our docker images and push them to the GitHub Container Registry. | |
# Before building images we run the unit tests to double-check that the images are working. | |
on: | |
release: | |
types: [published] | |
jobs: | |
test_server: | |
name: 'Run Server Tests' | |
uses: ./.github/workflows/test_server.yaml | |
test_client: | |
name: 'Run Client Tests' | |
uses: ./.github/workflows/test_client.yaml | |
build_server: | |
name: 'Build Server Image' | |
needs: [test_server] | |
uses: ./.github/workflows/build_image.yaml | |
with: | |
context: ./server | |
image_name: haztrak-server | |
build_client: | |
name: 'Build Client Image' | |
needs: [test_client] | |
uses: ./.github/workflows/build_image.yaml | |
with: | |
context: ./client | |
image_name: haztrak-client |