We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5859bc9 commit 20fe7edCopy full SHA for 20fe7ed
.github/workflows/ci.yml
@@ -47,6 +47,16 @@ jobs:
47
- name: Set up git for pushing
48
run: |
49
git remote set-url origin https://x-access-token:${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}.git
50
+ - name: Show git user and remote
51
+ run: |
52
+ git config --get user.name
53
+ git config --get user.email
54
+ git remote -v
55
+ - name: Show current branch and HEAD
56
57
+ git branch -a
58
+ git status
59
+ git rev-parse --abbrev-ref HEAD
60
- name: Create and push tag for current version (with verbose logging)
61
62
git remote -v
0 commit comments