Skip to content

Bump docker/bake-action from 4 to 5 #141

Bump docker/bake-action from 4 to 5

Bump docker/bake-action from 4 to 5 #141

Workflow file for this run

name: test
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- 'master'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
env:
BUILD_TAG: samba:test
CONTAINER_NAME: samba
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Build
uses: docker/bake-action@v5
with:
targets: image-local
env:
DEFAULT_TAG: ${{ env.BUILD_TAG }}
-
name: Start
run: |
docker compose up -d
working-directory: test
env:
SAMBA_IMAGE: ${{ env.BUILD_TAG }}
SAMBA_CONTAINER: ${{ env.CONTAINER_NAME }}
-
name: Check container logs
uses: crazy-max/.github/.github/actions/container-logs-check@main
with:
container_name: ${{ env.CONTAINER_NAME }}
log_check: " started."
timeout: 20
-
name: Dump smb.conf
run: |
docker compose exec ${{ env.CONTAINER_NAME }} cat /etc/samba/smb.conf
working-directory: test
env:
SAMBA_IMAGE: ${{ env.BUILD_TAG }}
SAMBA_CONTAINER: ${{ env.CONTAINER_NAME }}
-
name: Logs
if: always()
run: |
docker compose logs
working-directory: test
env:
SAMBA_IMAGE: ${{ env.BUILD_TAG }}
SAMBA_CONTAINER: ${{ env.CONTAINER_NAME }}