Skip to content

Commit

Permalink
Add build test
Browse files Browse the repository at this point in the history
  • Loading branch information
KomelT committed Aug 15, 2024
1 parent ce7cd69 commit 4f224c2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build MQTT
uses: docker/build-push-action@v6
with:
context: .
file: ./mqtt/Dockerfile

- name: Build API
uses: docker/build-push-action@v6
with:
context: .
file: ./api/Dockerfile

0 comments on commit 4f224c2

Please sign in to comment.