Skip to content

Commit

Permalink
Display authors from git log
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Oct 9, 2024
1 parent 8b3d216 commit b4259a9
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,19 @@ jobs:
# - name: Verify Git version
# run: git --version

- name: Display git log
- name: Debug - Display git authors
run: |
git shortlog --summary --email
- name: Debug - Display git log
run: |
git log -1 --decorate
- name: Display git status
- name: Debug - Display git status
run: |
git status
- name: Display git describe
- name: Debug - Display git describe
run: |
git describe --dirty --tags --long --match "*[0-9]*"
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
Expand All @@ -183,15 +187,17 @@ jobs:
pip list
#-------- Publishing of package
- name: Display git status

- name: Debug - Display git status
run: |
git status
- name: Display git describe
- name: Debug - Display git describe
run: |
git describe --dirty --tags --long --match "*[0-9]*"
- name: Display package version
- name: Debug - Display package version
run: |
SETUPTOOLS_SCM_DEBUG=1 python -m setuptools_scm
python -m setuptools_scm
- name: Build the distribution
run: |
make build
Expand Down

0 comments on commit b4259a9

Please sign in to comment.