From 53a16a7fea392fc8df1bbfb328a9d093abe80bd1 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Thu, 12 Jun 2025 13:32:23 -0400 Subject: [PATCH] added more debug --- .gitea/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 859817a..6d6ff8e 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -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 \