From b86e26d63322577418c378d5814c3eebacdccdbf Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Sun, 16 Mar 2025 08:36:15 +0100 Subject: [PATCH] add password debug test --- .gitea/workflows/build.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index f5edcd9..61bcf2f 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -17,6 +17,14 @@ jobs: run: uv python install - name: Build package run: uv build + - name: Debug Secrets + run: | + if [ -z "${{ secrets.PASSWORD }}" ]; then + echo "PASSWORD secret is not set" + exit 1 + else + echo "PASSWORD secret is set" + fi - name: Publish package env: USERNAME: ${{ github.repository_owner }}