From 36a861174e4d1d09ef5eae8a1832cc2d79b5f71e Mon Sep 17 00:00:00 2001 From: KC Berg Date: Wed, 9 Jul 2025 03:53:12 -0600 Subject: [PATCH] ci: add debug steps to diagnose tag push issues --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2962357..df60688 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,16 @@ jobs: - name: Set up git for pushing run: | git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}.git + - name: Show git user and remote + run: | + git config --get user.name + git config --get user.email + git remote -v + - name: Show current branch and HEAD + run: | + git branch -a + git status + git rev-parse --abbrev-ref HEAD - name: Create and push tag for current version (with verbose logging) run: | git remote -v