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 \