added more debug
Build Flutter Docker Image / build (release) Successful in 9s

This commit is contained in:
2025-06-12 13:32:23 -04:00
parent a351ed9e17
commit 53a16a7fea
+5 -2
View File
@@ -45,7 +45,9 @@ jobs:
- name: Debug output
run: |
echo "Exists: ${{ steps.check_image.outputs.exists }}"
echo "Exists: ${{ steps.check_image.outputs.exists }}" \
echo "Image Name: ${{ IMAGE_NAME }}" \
echo "Flutter Version: ${{ FLUTTER_VERSION }}"
- name: Log in to DockerHub
if: steps.check_image.outputs.exists == 'false'
@@ -55,9 +57,10 @@ jobs:
password: ${{ secrets.DOCKERHUB_ACCESS_TOKEN }}
- name: Build, push, and generate SBOM and provenance
if: steps.check_image.outputs.exists == 'false'
# if: steps.check_image.outputs.exists == 'false'
run: |
docker buildx build \
--build-arg FLUTTER_VERSION=${{ FLUTTER_VERSION }} \
--provenance=true \
--sbom=true \
--push \