From 28d24fc11af4ecc5956e62b1fb9aebb062a7bc63 Mon Sep 17 00:00:00 2001 From: phil Date: Mon, 28 Oct 2024 11:44:06 +0100 Subject: [PATCH] CI: improve workflow debug 7 --- .forgejo/workflows/build-with-app-image.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.forgejo/workflows/build-with-app-image.yaml b/.forgejo/workflows/build-with-app-image.yaml index 7a72a1d..55e06e8 100644 --- a/.forgejo/workflows/build-with-app-image.yaml +++ b/.forgejo/workflows/build-with-app-image.yaml @@ -1,5 +1,16 @@ on: push: + workflow_dispatch: + inputs: + logLevel: + description: "Log level" + required: true + default: "warning" + type: choice + options: + - info + - warning + - debug jobs: build: @@ -24,6 +35,7 @@ jobs: run: uv pip install httpx - name: Echo env + if: ${{ inputs.logLevel }} run: | echo '${{ toJSON(env) }}'