fix: correct YAML indentation error in docker workflow (#232)

- Fix incorrect indentation at line 237 in .github/workflows/docker.yml
- Step 'Extract metadata and generate tags' had 12 spaces instead of 6
- This was causing YAML syntax validation to fail
This commit is contained in:
安正超
2025-07-17 04:28:31 +08:00
committed by GitHub
parent af693f7b3f
commit dbd86f6aee

View File

@@ -234,7 +234,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Extract metadata and generate tags
- name: Extract metadata and generate tags
id: meta
run: |
BUILD_TYPE="${{ needs.build-check.outputs.build_type }}"