Skip to content

Commit

Permalink
GA updated
Browse files Browse the repository at this point in the history
  • Loading branch information
KomelT committed Sep 2, 2024
1 parent be3e83b commit 7e5d342
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build MQTT
- name: Build APP
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}"
file: ./mqtt/Dockerfile
file: ./app/Dockerfile

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

- name: Build MQTT
uses: docker/build-push-action@v6
with:
context: "{{defaultContext}}"
file: ./mqtt/Dockerfile
8 changes: 4 additions & 4 deletions .github/workflows/dockerhub-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,26 +21,26 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push App
- name: Build and push APP
uses: docker/build-push-action@v6
with:
context: .
context: "{{defaultContext}}"
push: true
file: "./app/Dockerfile"
tags: ${{ secrets.DOCKERHUB_USERNAME }}/meshtastic-map:latest

- name: Build and push API
uses: docker/build-push-action@v6
with:
context: .
context: "{{defaultContext}}"
push: true
file: "./api/Dockerfile"
tags: ${{ secrets.DOCKERHUB_USERNAME }}/meshtastic-map-api:latest

- name: Build and push MQTT listener
uses: docker/build-push-action@v6
with:
context: .
context: "{{defaultContext}}"
push: true
file: "./mqtt/Dockerfile"
tags: ${{ secrets.DOCKERHUB_USERNAME }}/meshtastic-map-mqtt:latest

0 comments on commit 7e5d342

Please sign in to comment.