--- lbbs/.github/workflows/docker-image.yml 2026/01/24 15:26:22 1.5 +++ lbbs/.github/workflows/docker-image.yml 2026/01/28 14:39:57 1.6 @@ -2,7 +2,8 @@ name: Docker Image CI on: push: - branches: [ "main" ] + branches: + - "v*.*" concurrency: group: ${{ github.workflow }}-${{ github.ref }} @@ -33,13 +34,13 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - - name: Extract Docker metadata - id: meta + - name: Extract Docker metadata (bbsd) + id: meta-bbsd uses: docker/metadata-action@v5 with: images: ${{ env.BBSD_IMAGE }} - - name: Build the Docker image + - name: Build the Docker image (bbsd) id: build-bbsd uses: docker/build-push-action@v5 with: @@ -47,7 +48,7 @@ jobs: context: . file: Dockerfile/dockerfile.bbsd tags: | - ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} + ${{ steps.meta-bbsd.outputs.tags }} + labels: ${{ steps.meta-bbsd.outputs.labels }} cache-from: type=gha # Pull cache from GitHub Actions cache cache-to: type=gha,mode=max # Push cache to GitHub Actions cache