Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Display authors from git log #655

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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