From db5c93bd8068b760daeaf04c6b64086a3439c166 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Wed, 29 Oct 2025 00:33:56 -0500 Subject: [PATCH] new sanity check for my sanity --- action.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/action.yml b/action.yml index 56b4f10..eb7496b 100644 --- a/action.yml +++ b/action.yml @@ -28,6 +28,16 @@ runs: git add "./post-entrypoint.sh" git commit -m "fuck you, gitea" + - name: sanity check + shell: bash + run: | + if [ -z "${{ secrets.USERNAME }}" ]; then + echo "❌ Secret not set!" + exit 1 + else + echo "✅ Secret appears to be set." + fi + - name: Build package uses: https://git.sanin.dev/packages_test/build-publish/@build with: