disable cache when building
All checks were successful
Build Docker containers / Build (push) Successful in 42s

This commit is contained in:
2025-04-16 00:17:40 -04:00
parent d50fe75759
commit 0a7e456173

View File

@ -13,11 +13,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build web app image
run: docker build -f webapp/Dockerfile -t git.arinity.org/ctmesh/map:latest .
run: docker build --no-cache -f webapp/Dockerfile -t git.arinity.org/ctmesh/map:latest .
- name: Build mqtt listener image
run: docker build -f mqtt/Dockerfile -t git.arinity.org/ctmesh/map-mqtt:latest .
run: docker build --no-cache -f mqtt/Dockerfile -t git.arinity.org/ctmesh/map-mqtt:latest .
- name: Build cli image
run: docker build -f cli/Dockerfile -t git.arinity.org/ctmesh/map-cli:latest .
run: docker build --no-cache -f cli/Dockerfile -t git.arinity.org/ctmesh/map-cli:latest .
- name: Push images
run: |
docker push git.arinity.org/ctmesh/map:latest