From 148192252141e111aaef92c7e9dde6f4bb875067 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Wed, 31 Jan 2024 14:46:40 +0100 Subject: [PATCH] Add debug job --- .gitea/workflows/release.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 902696c..c553069 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -35,6 +35,14 @@ jobs: echo "created=true" >> $GITHUB_OUTPUT fi + debug: + needs: tag + runs-on: ubuntu-latest + steps: + - name: Debug output + run: | + echo "${{ toJson(needs.tag.outputs) }}" + build: name: Build and push mlflow container needs: tag