Small change to the zones handling to work also with _waiting #16
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
# This workflow will build the containers for the frontend and backend | |
name: Docker Container Build | |
on: | |
push: | |
branches: [ "master", "mqtt-test"] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build the Simulator image | |
run: docker build Simulator/. --tag simulator_frontend:$(date +%s) | |
- name: Build the Frontend image | |
run: docker build frontend/. --tag simulator_backend:$(date +%s) |