Skip to content

Bump docker/build-push-action from 7.0.0 to 7.1.0 (#638) #1686

Bump docker/build-push-action from 7.0.0 to 7.1.0 (#638)

Bump docker/build-push-action from 7.0.0 to 7.1.0 (#638) #1686

Workflow file for this run

name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
- 'feature/**'
jobs:
run-build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up Docker Compose
run: |
sudo apt-get -y update
sudo apt-get -y install docker-compose
- name: Build Docker Compose
working-directory: compose
run: |
if ! docker-compose build; then
echo "Docker Compose build failed."
exit 1 # This will cause the workflow to fail
fi