Merge pull request #35 from radiantlab/feat/sepctral-irridiance-graph #26
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: docker-builds | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| push: | |
| branches: [ "main" ] | |
| concurrency: | |
| group: docker-builds-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| docker-builds: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Validate compose file | |
| run: docker compose config --quiet | |
| - name: Build combined app image | |
| run: docker build --tag glazing-control-app:${{ github.sha }} . | |
| - name: Build compose services | |
| run: docker compose build |